Coveralls logob
Coveralls logo
  • Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

PHPCSStandards / PHPCSUtils / 198

Builds Branch Commit Type Ran Committer Via Coverage
198 feature/arrays-isshortarray-make-compatible-with-older-phpcs Arrays::isShortArray(): fix compatibility with PHPCS < 2.8.0 [4] Work around a bug in the tokenizer of PHPCS < 2.8.0 where a `[` would be tokenized as T_OPEN_SQUARE_BRACKET instead of T_OPEN_SHORT_ARRAY if it was preceded by a close curly of a co... Pull #54 23 Jan 2020 01:54AM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
96.62
194 feature/new-arrays-class :sparkles: New Utils\Arrays class This adds a new utility method: * `isShortArray()` - to check whether a short array is in actual fact a short array and not a short list. Returns boolean. This commit also adds two convenience token arrays for w... Pull #53 23 Jan 2020 01:27AM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
97.43
191 feature/lists-new-getassignments-utility Utils\Lists: add new getAssignments() utility method This adds a new utility method: * `getAssignments()` - to retrieve information on the assignments made in the specified (long/short) list. Returns a multi-level array with information on each a... Pull #52 23 Jan 2020 01:00AM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
97.42
188 feature/lists-getopenclose-utility Utils\Lists: add new getOpenClose() utility method This adds a new utility method: * `getOpenClose()` - to retrieve the open and close brackets for a long/short list in a PHPCS cross-version compatible manner. Returns an array with an 'opener' an... Pull #51 23 Jan 2020 12:14AM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
97.31
179 feature/new-lists-class Lists::isShortList(): fix compatibility with PHPCS < 2.8.0 [3] PHPCS < 2.8.0 contained a bug where a square open bracket `[` directly following a closing curly would always be tokenized as `T_OPEN_SQUARE_BRACKET`, presuming this was array derefer... Pull #49 22 Jan 2020 11:34PM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
97.27
178 feature/new-passed-parameters-class :sparkles: New Utils\PassedParameters class This introduces four new methods to PHPCSUtils. These methods are intended for use with: * `T_STRING` and `T_VARIABLE` tokens for function calls; * `T_SELF` and `T_STATIC` token for function calls in t... Pull #48 22 Jan 2020 11:18PM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
97.19
177 feature/operators-new-isshortternary-utility Utils\Operators: add new isShortTernary() utility method This adds a new utility method: * `isShortTernary()` - to check whether a ternary then/else operator is part of a short ternary. Returns boolean. Includes dedicated unit tests. Pull #47 22 Jan 2020 11:04PM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
97.11
172 feature/operators-new-isunaryplusminus-utility Operators::isUnaryPlusMinus(): fix compatibility with PHPCS < 3.1.0 The PHP 5.5 `T_YIELD` token was not backfilled in PHPCS until version 3.1.0. This commit adds work-arounds to the utility method to handle the situation correctly. Refs: * squi... Pull #46 22 Jan 2020 10:35PM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
97.29
169 feature/operators-isreference-various-improvements Operators::isReference(): fix compatibility with PHPCS 2.8.0 - 3.2.3 PHPCS 2.8.0 - 3.2.3 contained a bug where a square open bracket `[` as the first code content after the PHP open tag in a file would be tokenized as `T_OPEN_SQUARE_BRACKET` not ... Pull #45 22 Jan 2020 10:06PM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
97.11
164 feature/new-operators-class :sparkles: New Utils\Operators class New `PHPCSUtils\Utils\Operators` class which will initially hold an improved version of the `File::isReference()` method as well as, at a later stage, additional methods related to examining operator tokens. ... Pull #44 22 Jan 2020 09:41PM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
97.01
163 feature/new-namespaces-class PHPCS ruleset: add temporary exclusion for bug in PHPCS upstream Pull #43 22 Jan 2020 09:25PM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
97.0
162 feature/functiondeclarations-getparams-use-isclosureuse FunctionDeclarations::getParameters(): implement use of UseStatements::isClosureUse() ... and improve the exception message thrown when a non-closure `T_USE` token was passed. Pull #42 22 Jan 2020 09:10PM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
96.87
155 feature/new-usestatements-class UseStatements::splitImportUseStatement(): fix PHPCS cross-version compatibility For this class to be compatible with PHPCS 2.6.0 - `master`, two work-arounds need to be added: 1. Prior to PHPCS 3.4.1 `function`/`const` in `use function`/`use cons... Pull #41 22 Jan 2020 08:22PM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
96.95
151 feature/variables-add-new-reserved-name-utilities Utils\Variables: add new reserved name related utility methods Add a new property related to PHP reserved variables names: * `$phpReservedVars` Also adds three new utility methods using this property, for convenience: * `isPHPReservedVarName()` ... Pull #40 22 Jan 2020 07:44PM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
96.76
147 feature/variables-getmemberproperties-various-improvements Variables::getMemberProperties(): minor code reorganization * Move the modifier keywords token array to a class property in the `PHPCSUtils\Tokens\Collections` class. * Move the property type tokens array to a class property in the `PHPCSUtils\To... Pull #39 22 Jan 2020 07:18PM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
96.69
  • ← Previous
  • 1
  • 2
  • …
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • Next →
  • Back to Repo
Troubleshooting · Open an Issue · Sales · Support · ENTERPRISE · CAREERS · STATUS
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2023 Coveralls, Inc