Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); /* * This file is part of PHP CS Fixer. * * (c) Fabien..
Decoded Output download
<?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <[email protected]>
* Dariusz Rumiski <[email protected]>
*
* 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\AbstractProxyFixer;
use PhpCsFixer\Fixer\DeprecatedFixerInterface;
use PhpCsFixer\Fixer\WhitespacesAwareFixerInterface;
use PhpCsFixer\FixerDefinition\CodeSample;
use PhpCsFixer\FixerDefinition\FixerDefinition;
use PhpCsFixer\FixerDefinition\FixerDefinitionInterface;
use PhpCsFixer\Tokenizer\Tokens;
/**
* @author Graham Campbell <[email protected]>
*
* @deprecated Use `blank_lines_before_namespace` with config: ['min_line_breaks' => 0, 'max_line_breaks' => 1]
*/
final class NoBlankLinesBeforeNamespaceFixer extends AbstractProxyFixer implements WhitespacesAwareFixerInterface, DeprecatedFixerInterface
{
public function getSuccessorsNames(): array
{
return array_keys($this->proxyFixers);
}
public function isCandidate(Tokens $tokens): bool
{
return $tokens->isTokenKindFound(T_NAMESPACE);
}
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;
}
protected function createProxyFixers(): array
{
$blankLineBeforeNamespace = new BlankLinesBeforeNamespaceFixer();
$blankLineBeforeNamespace->configure([
'min_line_breaks' => 0,
'max_line_breaks' => 1,
]);
return [
$blankLineBeforeNamespace,
];
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <[email protected]>
* Dariusz Rumiski <[email protected]>
*
* 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\AbstractProxyFixer;
use PhpCsFixer\Fixer\DeprecatedFixerInterface;
use PhpCsFixer\Fixer\WhitespacesAwareFixerInterface;
use PhpCsFixer\FixerDefinition\CodeSample;
use PhpCsFixer\FixerDefinition\FixerDefinition;
use PhpCsFixer\FixerDefinition\FixerDefinitionInterface;
use PhpCsFixer\Tokenizer\Tokens;
/**
* @author Graham Campbell <[email protected]>
*
* @deprecated Use `blank_lines_before_namespace` with config: ['min_line_breaks' => 0, 'max_line_breaks' => 1]
*/
final class NoBlankLinesBeforeNamespaceFixer extends AbstractProxyFixer implements WhitespacesAwareFixerInterface, DeprecatedFixerInterface
{
public function getSuccessorsNames(): array
{
return array_keys($this->proxyFixers);
}
public function isCandidate(Tokens $tokens): bool
{
return $tokens->isTokenKindFound(T_NAMESPACE);
}
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;
}
protected function createProxyFixers(): array
{
$blankLineBeforeNamespace = new BlankLinesBeforeNamespaceFixer();
$blankLineBeforeNamespace->configure([
'min_line_breaks' => 0,
'max_line_breaks' => 1,
]);
return [
$blankLineBeforeNamespace,
];
}
}
Function Calls
None |
Stats
MD5 | b1ff5274f609338885d103da5fa1e151 |
Eval Count | 0 |
Decode Time | 103 ms |