Skip to content

Commit 2c698a6

Browse files
committed
qa: apply laminas-coding-standard 2.2 rules
Primarily removal of file-level docblocks. Signed-off-by: Matthew Weier O'Phinney <[email protected]>
1 parent cb3608d commit 2c698a6

16 files changed

+10
-84
lines changed

phpcs.xml

-4
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,4 @@
1717

1818
<!-- Include all rules from Laminas Coding Standard -->
1919
<rule ref="LaminasCodingStandard" />
20-
21-
<rule ref="SlevomatCodingStandard.Classes.UnusedPrivateElements.UnusedMethod">
22-
<exclude-pattern>/src/AbstractDependencyRewriter.php</exclude-pattern>
23-
</rule>
2420
</ruleset>

src/AbstractDependencyRewriter.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
<?php
22

3-
/**
4-
* @see https://github.com/laminas/laminas-dependency-plugin for the canonical source repository
5-
* @copyright https://github.com/laminas/laminas-dependency-plugin/blob/master/COPYRIGHT.md
6-
* @license https://github.com/laminas/laminas-dependency-plugin/blob/master/LICENSE.md New BSD License
7-
*/
3+
declare(strict_types=1);
84

95
namespace Laminas\DependencyPlugin;
106

src/AutoloadDumpCapableInterface.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
<?php
22

3-
/**
4-
* @see https://github.com/laminas/laminas-dependency-plugin for the canonical source repository
5-
* @copyright https://github.com/laminas/laminas-dependency-plugin/blob/master/COPYRIGHT.md
6-
* @license https://github.com/laminas/laminas-dependency-plugin/blob/master/LICENSE.md New BSD License
7-
*/
3+
declare(strict_types=1);
84

95
namespace Laminas\DependencyPlugin;
106

src/DependencyRewriterPlugin.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
<?php
22

3-
/**
4-
* @see https://github.com/laminas/laminas-dependency-plugin for the canonical source repository
5-
* @copyright https://github.com/laminas/laminas-dependency-plugin/blob/master/COPYRIGHT.md
6-
* @license https://github.com/laminas/laminas-dependency-plugin/blob/master/LICENSE.md New BSD License
7-
*/
3+
declare(strict_types=1);
84

95
namespace Laminas\DependencyPlugin;
106

src/DependencyRewriterPluginDelegator.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
<?php
22

3-
/**
4-
* @see https://github.com/laminas/laminas-dependency-plugin for the canonical source repository
5-
* @copyright https://github.com/laminas/laminas-dependency-plugin/blob/master/COPYRIGHT.md
6-
* @license https://github.com/laminas/laminas-dependency-plugin/blob/master/LICENSE.md New BSD License
7-
*/
3+
declare(strict_types=1);
84

95
namespace Laminas\DependencyPlugin;
106

src/DependencyRewriterV1.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
<?php
22

3-
/**
4-
* @see https://github.com/laminas/laminas-dependency-plugin for the canonical source repository
5-
* @copyright https://github.com/laminas/laminas-dependency-plugin/blob/master/COPYRIGHT.md
6-
* @license https://github.com/laminas/laminas-dependency-plugin/blob/master/LICENSE.md New BSD License
7-
*/
3+
declare(strict_types=1);
84

95
namespace Laminas\DependencyPlugin;
106

src/DependencyRewriterV2.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
<?php
22

3-
/**
4-
* @see https://github.com/laminas/laminas-dependency-plugin for the canonical source repository
5-
* @copyright https://github.com/laminas/laminas-dependency-plugin/blob/master/COPYRIGHT.md
6-
* @license https://github.com/laminas/laminas-dependency-plugin/blob/master/LICENSE.md New BSD License
7-
*/
3+
declare(strict_types=1);
84

95
namespace Laminas\DependencyPlugin;
106

src/DependencySolvingCapableInterface.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
<?php
22

3-
/**
4-
* @see https://github.com/laminas/laminas-dependency-plugin for the canonical source repository
5-
* @copyright https://github.com/laminas/laminas-dependency-plugin/blob/master/COPYRIGHT.md
6-
* @license https://github.com/laminas/laminas-dependency-plugin/blob/master/LICENSE.md New BSD License
7-
*/
3+
declare(strict_types=1);
84

95
namespace Laminas\DependencyPlugin;
106

src/PoolCapableInterface.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
<?php
22

3-
/**
4-
* @see https://github.com/laminas/laminas-dependency-plugin for the canonical source repository
5-
* @copyright https://github.com/laminas/laminas-dependency-plugin/blob/master/COPYRIGHT.md
6-
* @license https://github.com/laminas/laminas-dependency-plugin/blob/master/LICENSE.md New BSD License
7-
*/
3+
declare(strict_types=1);
84

95
namespace Laminas\DependencyPlugin;
106

src/Replacements.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
<?php
22

3-
/**
4-
* @see https://github.com/laminas/laminas-dependency-plugin for the canonical source repository
5-
* @copyright https://github.com/laminas/laminas-dependency-plugin/blob/master/COPYRIGHT.md
6-
* @license https://github.com/laminas/laminas-dependency-plugin/blob/master/LICENSE.md New BSD License
7-
*/
3+
declare(strict_types=1);
84

95
namespace Laminas\DependencyPlugin;
106

src/RewriterInterface.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
<?php
22

3-
/**
4-
* @see https://github.com/laminas/laminas-dependency-plugin for the canonical source repository
5-
* @copyright https://github.com/laminas/laminas-dependency-plugin/blob/master/COPYRIGHT.md
6-
* @license https://github.com/laminas/laminas-dependency-plugin/blob/master/LICENSE.md New BSD License
7-
*/
3+
declare(strict_types=1);
84

95
namespace Laminas\DependencyPlugin;
106

test/DependencyRewriterPluginDelegatorTest.php

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
<?php
22

3-
/**
4-
* @see https://github.com/laminas/laminas-dependency-plugin for the canonical source repository
5-
* @copyright https://github.com/laminas/laminas-dependency-plugin/blob/master/COPYRIGHT.md
6-
* @license https://github.com/laminas/laminas-dependency-plugin/blob/master/LICENSE.md New BSD License
7-
*/
8-
93
declare(strict_types=1);
104

115
namespace LaminasTest\DependencyPlugin;

test/DependencyRewriterV1Test.php

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
<?php
22

3-
/**
4-
* @see https://github.com/laminas/laminas-dependency-plugin for the canonical source repository
5-
* @copyright https://github.com/laminas/laminas-dependency-plugin/blob/master/COPYRIGHT.md
6-
* @license https://github.com/laminas/laminas-dependency-plugin/blob/master/LICENSE.md New BSD License
7-
*/
8-
93
declare(strict_types=1);
104

115
namespace LaminasTest\DependencyPlugin;

test/DependencyRewriterV2Test.php

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
<?php
22

3-
/**
4-
* @see https://github.com/laminas/laminas-dependency-plugin for the canonical source repository
5-
* @copyright https://github.com/laminas/laminas-dependency-plugin/blob/master/COPYRIGHT.md
6-
* @license https://github.com/laminas/laminas-dependency-plugin/blob/master/LICENSE.md New BSD License
7-
*/
8-
93
declare(strict_types=1);
104

115
namespace LaminasTest\DependencyPlugin;

test/ReplacementsTest.php

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
<?php
22

3-
/**
4-
* @see https://github.com/laminas/laminas-dependency-plugin for the canonical source repository
5-
* @copyright https://github.com/laminas/laminas-dependency-plugin/blob/master/COPYRIGHT.md
6-
* @license https://github.com/laminas/laminas-dependency-plugin/blob/master/LICENSE.md New BSD License
7-
*/
8-
93
declare(strict_types=1);
104

115
namespace LaminasTest\DependencyPlugin;

test/TestAsset/IOWriteExpectations.php

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
<?php
22

3-
/**
4-
* @see https://github.com/laminas/laminas-dependency-plugin for the canonical source repository
5-
* @copyright https://github.com/laminas/laminas-dependency-plugin/blob/master/COPYRIGHT.md
6-
* @license https://github.com/laminas/laminas-dependency-plugin/blob/master/LICENSE.md New BSD License
7-
*/
8-
93
declare(strict_types=1);
104

115
namespace LaminasTest\DependencyPlugin\TestAsset;

0 commit comments

Comments
 (0)