Missing dependancies
This commit is contained in:
+136
@@ -0,0 +1,136 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of PHP CS Fixer.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
|
||||
*
|
||||
* This source file is subject to the MIT license that is bundled
|
||||
* with this source code in the file LICENSE.
|
||||
*/
|
||||
|
||||
namespace PhpCsFixer\Fixer\NamespaceNotation;
|
||||
|
||||
use PhpCsFixer\AbstractFixer;
|
||||
use PhpCsFixer\Fixer\WhitespacesAwareFixerInterface;
|
||||
use PhpCsFixer\FixerDefinition\CodeSample;
|
||||
use PhpCsFixer\FixerDefinition\FixerDefinition;
|
||||
use PhpCsFixer\FixerDefinition\FixerDefinitionInterface;
|
||||
use PhpCsFixer\Preg;
|
||||
use PhpCsFixer\Tokenizer\Token;
|
||||
use PhpCsFixer\Tokenizer\Tokens;
|
||||
|
||||
/**
|
||||
* Fixer for rules defined in PSR2 ¶3.
|
||||
*
|
||||
* @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
|
||||
*/
|
||||
final class BlankLineAfterNamespaceFixer extends AbstractFixer implements WhitespacesAwareFixerInterface
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getDefinition(): FixerDefinitionInterface
|
||||
{
|
||||
return new FixerDefinition(
|
||||
'There MUST be one blank line after the namespace declaration.',
|
||||
[
|
||||
new CodeSample("<?php\nnamespace Sample\\Sample;\n\n\n\$a;\n"),
|
||||
new CodeSample("<?php\nnamespace Sample\\Sample;\nClass Test{}\n"),
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* Must run after NoUnusedImportsFixer.
|
||||
*/
|
||||
public function getPriority(): int
|
||||
{
|
||||
return -20;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function isCandidate(Tokens $tokens): bool
|
||||
{
|
||||
return $tokens->isTokenKindFound(T_NAMESPACE);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
|
||||
{
|
||||
$lastIndex = $tokens->count() - 1;
|
||||
|
||||
for ($index = $lastIndex; $index >= 0; --$index) {
|
||||
$token = $tokens[$index];
|
||||
|
||||
if (!$token->isGivenKind(T_NAMESPACE)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$semicolonIndex = $tokens->getNextTokenOfKind($index, [';', '{', [T_CLOSE_TAG]]);
|
||||
$semicolonToken = $tokens[$semicolonIndex];
|
||||
|
||||
if (!$semicolonToken->equals(';')) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$indexToEnsureBlankLineAfter = $this->getIndexToEnsureBlankLineAfter($tokens, $semicolonIndex);
|
||||
$indexToEnsureBlankLine = $tokens->getNonEmptySibling($indexToEnsureBlankLineAfter, 1);
|
||||
|
||||
if (null !== $indexToEnsureBlankLine && $tokens[$indexToEnsureBlankLine]->isWhitespace()) {
|
||||
$tokens[$indexToEnsureBlankLine] = $this->getTokenToInsert($tokens[$indexToEnsureBlankLine]->getContent(), $indexToEnsureBlankLine === $lastIndex);
|
||||
} else {
|
||||
$tokens->insertAt($indexToEnsureBlankLineAfter + 1, $this->getTokenToInsert('', $indexToEnsureBlankLineAfter === $lastIndex));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private function getIndexToEnsureBlankLineAfter(Tokens $tokens, int $index): int
|
||||
{
|
||||
$indexToEnsureBlankLine = $index;
|
||||
$nextIndex = $tokens->getNonEmptySibling($indexToEnsureBlankLine, 1);
|
||||
|
||||
while (null !== $nextIndex) {
|
||||
$token = $tokens[$nextIndex];
|
||||
|
||||
if ($token->isWhitespace()) {
|
||||
if (1 === Preg::match('/\R/', $token->getContent())) {
|
||||
break;
|
||||
}
|
||||
$nextNextIndex = $tokens->getNonEmptySibling($nextIndex, 1);
|
||||
|
||||
if (!$tokens[$nextNextIndex]->isComment()) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!$token->isWhitespace() && !$token->isComment()) {
|
||||
break;
|
||||
}
|
||||
|
||||
$indexToEnsureBlankLine = $nextIndex;
|
||||
$nextIndex = $tokens->getNonEmptySibling($indexToEnsureBlankLine, 1);
|
||||
}
|
||||
|
||||
return $indexToEnsureBlankLine;
|
||||
}
|
||||
|
||||
private function getTokenToInsert(string $currentContent, bool $isLastIndex): Token
|
||||
{
|
||||
$ending = $this->whitespacesConfig->getLineEnding();
|
||||
|
||||
$emptyLines = $isLastIndex ? $ending : $ending.$ending;
|
||||
$indent = 1 === Preg::match('/^.*\R( *)$/s', $currentContent, $matches) ? $matches[1] : '';
|
||||
|
||||
return new Token([T_WHITESPACE, $emptyLines.$indent]);
|
||||
}
|
||||
}
|
||||
Vendored
+107
@@ -0,0 +1,107 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of PHP CS Fixer.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
|
||||
*
|
||||
* This source file is subject to the MIT license that is bundled
|
||||
* with this source code in the file LICENSE.
|
||||
*/
|
||||
|
||||
namespace PhpCsFixer\Fixer\NamespaceNotation;
|
||||
|
||||
use PhpCsFixer\AbstractLinesBeforeNamespaceFixer;
|
||||
use PhpCsFixer\FixerDefinition\FixerDefinition;
|
||||
use PhpCsFixer\FixerDefinition\FixerDefinitionInterface;
|
||||
use PhpCsFixer\FixerDefinition\VersionSpecification;
|
||||
use PhpCsFixer\FixerDefinition\VersionSpecificCodeSample;
|
||||
use PhpCsFixer\Tokenizer\Tokens;
|
||||
|
||||
final class CleanNamespaceFixer extends AbstractLinesBeforeNamespaceFixer
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getDefinition(): FixerDefinitionInterface
|
||||
{
|
||||
$samples = [];
|
||||
|
||||
foreach (['namespace Foo \\ Bar;', 'echo foo /* comment */ \\ bar();'] as $sample) {
|
||||
$samples[] = new VersionSpecificCodeSample(
|
||||
"<?php\n".$sample."\n",
|
||||
new VersionSpecification(null, 80000 - 1)
|
||||
);
|
||||
}
|
||||
|
||||
return new FixerDefinition(
|
||||
'Namespace must not contain spacing, comments or PHPDoc.',
|
||||
$samples
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function isCandidate(Tokens $tokens): bool
|
||||
{
|
||||
return \PHP_VERSION_ID < 80000 && $tokens->isTokenKindFound(T_NS_SEPARATOR);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
|
||||
{
|
||||
$count = $tokens->count();
|
||||
|
||||
for ($index = 0; $index < $count; ++$index) {
|
||||
if ($tokens[$index]->isGivenKind(T_NS_SEPARATOR)) {
|
||||
$previousIndex = $tokens->getPrevMeaningfulToken($index);
|
||||
|
||||
$index = $this->fixNamespace(
|
||||
$tokens,
|
||||
$tokens[$previousIndex]->isGivenKind(T_STRING) ? $previousIndex : $index
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param int $index start of namespace
|
||||
*/
|
||||
private function fixNamespace(Tokens $tokens, int $index): int
|
||||
{
|
||||
$tillIndex = $index;
|
||||
|
||||
// go to the end of the namespace
|
||||
while ($tokens[$tillIndex]->isGivenKind([T_NS_SEPARATOR, T_STRING])) {
|
||||
$tillIndex = $tokens->getNextMeaningfulToken($tillIndex);
|
||||
}
|
||||
|
||||
$tillIndex = $tokens->getPrevMeaningfulToken($tillIndex);
|
||||
|
||||
$spaceIndices = [];
|
||||
|
||||
for (; $index <= $tillIndex; ++$index) {
|
||||
if ($tokens[$index]->isGivenKind(T_WHITESPACE)) {
|
||||
$spaceIndices[] = $index;
|
||||
} elseif ($tokens[$index]->isComment()) {
|
||||
$tokens->clearAt($index);
|
||||
}
|
||||
}
|
||||
|
||||
if ($tokens[$index - 1]->isWhitespace()) {
|
||||
array_pop($spaceIndices);
|
||||
}
|
||||
|
||||
foreach ($spaceIndices as $i) {
|
||||
$tokens->clearAt($i);
|
||||
}
|
||||
|
||||
return $index;
|
||||
}
|
||||
}
|
||||
+76
@@ -0,0 +1,76 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of PHP CS Fixer.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
|
||||
*
|
||||
* This source file is subject to the MIT license that is bundled
|
||||
* with this source code in the file LICENSE.
|
||||
*/
|
||||
|
||||
namespace PhpCsFixer\Fixer\NamespaceNotation;
|
||||
|
||||
use PhpCsFixer\AbstractLinesBeforeNamespaceFixer;
|
||||
use PhpCsFixer\FixerDefinition\CodeSample;
|
||||
use PhpCsFixer\FixerDefinition\FixerDefinition;
|
||||
use PhpCsFixer\FixerDefinition\FixerDefinitionInterface;
|
||||
use PhpCsFixer\Tokenizer\Tokens;
|
||||
|
||||
/**
|
||||
* @author Graham Campbell <hello@gjcampbell.co.uk>
|
||||
*/
|
||||
final class NoBlankLinesBeforeNamespaceFixer extends AbstractLinesBeforeNamespaceFixer
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function isCandidate(Tokens $tokens): bool
|
||||
{
|
||||
return $tokens->isTokenKindFound(T_NAMESPACE);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getDefinition(): FixerDefinitionInterface
|
||||
{
|
||||
return new FixerDefinition(
|
||||
'There should be no blank lines before a namespace declaration.',
|
||||
[
|
||||
new CodeSample(
|
||||
"<?php\n\n\n\nnamespace Example;\n"
|
||||
),
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* Must run after BlankLineAfterOpeningTagFixer.
|
||||
*/
|
||||
public function getPriority(): int
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
|
||||
{
|
||||
for ($index = 0, $limit = $tokens->count(); $index < $limit; ++$index) {
|
||||
$token = $tokens[$index];
|
||||
|
||||
if (!$token->isGivenKind(T_NAMESPACE)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$this->fixLinesBeforeNamespace($tokens, $index, 0, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
+104
@@ -0,0 +1,104 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of PHP CS Fixer.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
|
||||
*
|
||||
* This source file is subject to the MIT license that is bundled
|
||||
* with this source code in the file LICENSE.
|
||||
*/
|
||||
|
||||
namespace PhpCsFixer\Fixer\NamespaceNotation;
|
||||
|
||||
use PhpCsFixer\AbstractFixer;
|
||||
use PhpCsFixer\Fixer\WhitespacesAwareFixerInterface;
|
||||
use PhpCsFixer\FixerDefinition\CodeSample;
|
||||
use PhpCsFixer\FixerDefinition\FixerDefinition;
|
||||
use PhpCsFixer\FixerDefinition\FixerDefinitionInterface;
|
||||
use PhpCsFixer\Tokenizer\Token;
|
||||
use PhpCsFixer\Tokenizer\Tokens;
|
||||
|
||||
/**
|
||||
* @author Bram Gotink <bram@gotink.me>
|
||||
* @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
|
||||
*/
|
||||
final class NoLeadingNamespaceWhitespaceFixer extends AbstractFixer implements WhitespacesAwareFixerInterface
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function isCandidate(Tokens $tokens): bool
|
||||
{
|
||||
return $tokens->isTokenKindFound(T_NAMESPACE);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getDefinition(): FixerDefinitionInterface
|
||||
{
|
||||
return new FixerDefinition(
|
||||
'The namespace declaration line shouldn\'t contain leading whitespace.',
|
||||
[
|
||||
new CodeSample(
|
||||
'<?php
|
||||
namespace Test8a;
|
||||
namespace Test8b;
|
||||
'
|
||||
),
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
|
||||
{
|
||||
for ($index = \count($tokens) - 1; 0 <= $index; --$index) {
|
||||
$token = $tokens[$index];
|
||||
|
||||
if (!$token->isGivenKind(T_NAMESPACE)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$beforeNamespaceIndex = $index - 1;
|
||||
$beforeNamespace = $tokens[$beforeNamespaceIndex];
|
||||
|
||||
if (!$beforeNamespace->isWhitespace()) {
|
||||
if (!self::endsWithWhitespace($beforeNamespace->getContent())) {
|
||||
$tokens->insertAt($index, new Token([T_WHITESPACE, $this->whitespacesConfig->getLineEnding()]));
|
||||
}
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
$lastNewline = strrpos($beforeNamespace->getContent(), "\n");
|
||||
|
||||
if (false === $lastNewline) {
|
||||
$beforeBeforeNamespace = $tokens[$index - 2];
|
||||
|
||||
if (self::endsWithWhitespace($beforeBeforeNamespace->getContent())) {
|
||||
$tokens->clearAt($beforeNamespaceIndex);
|
||||
} else {
|
||||
$tokens[$beforeNamespaceIndex] = new Token([T_WHITESPACE, ' ']);
|
||||
}
|
||||
} else {
|
||||
$tokens[$beforeNamespaceIndex] = new Token([T_WHITESPACE, substr($beforeNamespace->getContent(), 0, $lastNewline + 1)]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private static function endsWithWhitespace(string $str): bool
|
||||
{
|
||||
if ('' === $str) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return '' === trim(substr($str, -1));
|
||||
}
|
||||
}
|
||||
+71
@@ -0,0 +1,71 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of PHP CS Fixer.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
|
||||
*
|
||||
* This source file is subject to the MIT license that is bundled
|
||||
* with this source code in the file LICENSE.
|
||||
*/
|
||||
|
||||
namespace PhpCsFixer\Fixer\NamespaceNotation;
|
||||
|
||||
use PhpCsFixer\AbstractLinesBeforeNamespaceFixer;
|
||||
use PhpCsFixer\FixerDefinition\CodeSample;
|
||||
use PhpCsFixer\FixerDefinition\FixerDefinition;
|
||||
use PhpCsFixer\FixerDefinition\FixerDefinitionInterface;
|
||||
use PhpCsFixer\Tokenizer\Tokens;
|
||||
|
||||
/**
|
||||
* @author Graham Campbell <hello@gjcampbell.co.uk>
|
||||
*/
|
||||
final class SingleBlankLineBeforeNamespaceFixer extends AbstractLinesBeforeNamespaceFixer
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getDefinition(): FixerDefinitionInterface
|
||||
{
|
||||
return new FixerDefinition(
|
||||
'There should be exactly one blank line before a namespace declaration.',
|
||||
[
|
||||
new CodeSample("<?php namespace A {}\n"),
|
||||
new CodeSample("<?php\n\n\nnamespace A{}\n"),
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function isCandidate(Tokens $tokens): bool
|
||||
{
|
||||
return $tokens->isTokenKindFound(T_NAMESPACE);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getPriority(): int
|
||||
{
|
||||
return -21;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
|
||||
{
|
||||
for ($index = $tokens->count() - 1; $index >= 0; --$index) {
|
||||
$token = $tokens[$index];
|
||||
|
||||
if ($token->isGivenKind(T_NAMESPACE)) {
|
||||
$this->fixLinesBeforeNamespace($tokens, $index, 2, 2);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user