Releases: traderinteractive/dws-coding-standard
Releases · traderinteractive/dws-coding-standard
Version 2.1.0
Major Features
- Switch to TraderInteractive [PR #85]
- Update LICENSE file
- Change package to
traderinteractive/coding-standard
- Add .github files CODEOWNERS, PULL_REQUEST_TEMPLATE, ISSUE_TEMPLATE & CONTRIBUTING
- Update PHPCS dependency
- Update README
- Remove composer.lock from version control
- Update Travis-CI config
- Update Coveralls config
Version 2.0.1
Version 2.0.0
Version 1.4.0 - Multiline String Concatenation
This release relaxes the "Unnecessary String Concatenation" sniff when it comes to long lines. It also fixes an issue with class declarations.
Bugs Fixed
Unnecessary String Concatenation
Strings that break the line length limit (144 characters) can now be broken out onto multiple lines. For example, the following is now legal:
$foo = 'really really really really really really really really really really really really really really really really really really really'
. ' really long line';
Class Declarations
At some point, this part of our standard was not included or got removed. Opening braces for classes must appear on a new line:
// LEGAL
class Foo
{
}
// ILLEGAL
class Bar {
}