Skip to content

Commit c2c7557

Browse files
committed
Add phpcs:disable comment for non-whitespace violations.
1 parent 90116df commit c2c7557

7 files changed

Lines changed: 21 additions & 0 deletions

File tree

init.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
<?php
2+
3+
// phpcs:disable PSR1.Files.SideEffects.FoundWithSymbols
4+
25
require_once(__DIR__ . "/config.php");
36
require_once(__DIR__ . "/vendor/autoload.php");
47

lib/MailTemplateGenerator.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
<?php
2+
3+
// phpcs:disable Generic.Files.LineLength.TooLong
4+
25
namespace Pdsinterop\PhpSolid;
36

47
class MailTemplateGenerator {

lib/MailTemplates.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
<?php
2+
3+
// phpcs:disable Generic.Files.LineLength.TooLong
4+
25
namespace Pdsinterop\PhpSolid;
36

47
use Pdsinterop\PhpSolid\MailTemplateGenerator;

lib/Middleware.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
<?php
2+
3+
// phpcs:disable Generic.Files.LineLength.TooLong
4+
25
namespace Pdsinterop\PhpSolid;
36

47
class Middleware {

lib/Routes/SolidIdp.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
<?php
2+
3+
// phpcs:disable Generic.Files.LineLength.TooLong
4+
25
namespace Pdsinterop\PhpSolid\Routes;
36

47
use Pdsinterop\PhpSolid\Server;

lib/User.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
<?php
2+
3+
// phpcs:disable Generic.Files.LineLength.TooLong
4+
25
namespace Pdsinterop\PhpSolid;
36

47
use Pdsinterop\PhpSolid\PasswordValidator;

lib/Util.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
<?php
2+
3+
// phpcs:disable PSR1.Methods.CamelCapsMethodName.NotCamelCaps
4+
25
namespace Pdsinterop\PhpSolid;
36

47
class Util {

0 commit comments

Comments
 (0)