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

PHPCSStandards / PHPCSUtils / 233

Builds Branch Commit Type Ran Committer Via Coverage
233 feature/new-spacesfixer-class :sparkles: New Fixers\SpacesFixer class This new class offers one versatile utility function `checkAndFix()` to - as the name implies - check and fix the spacing between two tokens. It takes all the heavy lifting out of space fixes and should al... Pull #65 23 Jan 2020 06:35AM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
96.86
232 feature/new-abstractarraydeclaration-basesniff-class Abstracts\AbstractArrayDeclarationSniff: new `getActualArrayKey()` method This is a helper method which can optionally be used from the `processKey()` method to retrieve the actual array key value based on the array key rules used in PHP. * Arra... Pull #64 23 Jan 2020 06:19AM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
96.58
226 feature/new-numbers-class :sparkles: New Utils\Numbers class PHP 7.4 introduced numeric literal separators which break number tokenization in older PHP versions. PHPCS backfills this since PHPCS 3.5.3, but that backfill implementation is broken in such a bad way that PHPC... Pull #62 23 Jan 2020 05:03AM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
96.74
217 feature/new-textstrings-class :sparkles: New Utils\TextStrings class This introduces two new methods: * `getCompleteTextString()` - to retrieve the complete text string content of a - potentially multi-line - text string. Returns the text string. * `stripQuotes()` - to strip ... Pull #60 23 Jan 2020 04:24AM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
96.72
216 feature/new-orthography-class Orthography::isLastCharPunctuation(): PHP/PHPCS cross-version compatibility fix The default charset for the PHP iconv extension changed in PHP 5.6 from ISO-8859-1 to UTF-8. The default charset used by PHPCS changed with PHPCS 3.0.0 from ISO-8859-... Pull #59 23 Jan 2020 03:52AM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
96.58
215 feature/arrays-new-getdoublearrowptr-utility Utils\Arrays: add new getDoubleArrowPtr() utility method This adds a new utility method: * `getDoubleArrowPtr()` - to find the position of a double arrow within an array item. Returns the integer stackPtr position or false if the array item doesn... Pull #58 23 Jan 2020 03:37AM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
96.7
208 feature/arrays-new-getopenclose-utility Utils\Arrays: add new getOpenClose() utility method This adds a new utility method: * `getOpenClose()` - to retrieve the open and close brackets for a long/short array in a PHPCS cross-version compatible manner. Returns an array with an 'opener' ... Pull #57 23 Jan 2020 02:56AM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
96.66
206 feature/passedparameters-fix-bc-for-short-arrays Utils\PassedParameters: fix PHPC cross-version compatibility for short arrays ... by implementing support for passing a `T_OPEN_SQUARE_BRACKET` token, as well as making sure that any `T_OPEN_SHORT_ARRAY` token is actually a short array and not a ... Pull #56 23 Jan 2020 02:37AM UTC 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow travis-ci-com
96.63
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
  • ← Previous
  • 1
  • 2
  • …
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 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