Juliette

Results 605 issues of Juliette

Fixes the following issues: **_Issue 1:_** Twitter cards require the ':site' tag. > twitter:site > @username of website. Either twitter:site or twitter:site:id is required. Ref: https://dev.twitter.com/cards/markup The `site` tag is...

As this code will often be adjusted - adding windows 8 tiles, adding non-precomposed apple icons etc -, moving it into a separate file will allow for an easier upgrade...

When installing ChocolateyGui and passing package parameters on install as per the example on [the package page](https://chocolatey.org/packages/ChocolateyGUI), the parameters are not actually set for the package. **CLI used**: `cmd` /...

[PHPCompatibility 9.0.0](https://github.com/PHPCompatibility/PHPCompatibility/releases/tag/9.0.0) has just been released and renames all sniffs. [PHPCompatibilityWP 2.0.0](https://github.com/PHPCompatibility/PHPCompatibilityWP/releases/tag/2.0.0) has been released alongside it. Updating to the new version is strongly recommended.

Since PHP 7.3, heredoc/nowdoc closers may be indented. This indent can use either tabs or spaces and the indent is included in the `T_END_HEREDOC`/`T_END_NOWDOC` token contents as received from the...

Bug

Since PHP 7.3, heredoc/nowdoc closers may be indented. This indent can use either tabs or spaces and the indent is included in the `T_END_HEREDOC`/`T_END_NOWDOC` token contents as received from the...

Bug

Use `space`/`spaces` depending on the value of the `$spacing` property instead of using `space(s)` in the error message. Original output: ![image](https://user-images.githubusercontent.com/663378/184382722-c6f403b1-73e1-49c6-ad3d-15c86cc94b81.png) Improved output: ![image](https://user-images.githubusercontent.com/663378/184382888-f1d77688-6249-49b0-a800-600416c58c86.png)

### :warning: This PR contains two - albeit small - BC-breaks! :warning: The BC-breaks can be broken down as follows: ### For end-users If a property is set via a...

The `PSR2.Classes.PropertyDeclaration` sniff includes a check to verify that the `static` keyword is _after_ the visibility in a property declaration. PHP 8.1 introduced the `readonly` keyword for properties, but as...

The function call spacing for anonymous class instantiations was so far not checked by these ~~or any other PHPCS native~~ sniffs. In my opinion, object instantiations of anonymous classes should...