Skip to content

Commit

Permalink
Misc: update coding standard fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
satrun77 committed Nov 6, 2021
1 parent 257c998 commit a96aafb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
'@PSR12' => true,
'@PhpCsFixer' => true,
'@Symfony' => true,
'php_unit_test_class_requires_covers' => false,
'protected_to_private' => false,
'yoda_style' => false,
'no_trailing_comma_in_list_call' => false,
Expand Down
3 changes: 3 additions & 0 deletions tests/HasOneSelectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
use SilverStripe\ORM\ArrayList;
use SilverStripe\View\ArrayData;

/**
* @internal
*/
class HasOneSelectorTest extends SapphireTest
{
public static function tearDownAfterClass()
Expand Down
3 changes: 3 additions & 0 deletions tests/Object/PageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
use SilverStripe\Dev\TestOnly;
use SilverStripe\ORM\DataObject;

/**
* @internal
*/
class PageTest extends DataObject implements TestOnly
{
private static $table_name = 'PageTest';
Expand Down
3 changes: 3 additions & 0 deletions tests/Object/ResourceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
use SilverStripe\Dev\TestOnly;
use SilverStripe\ORM\DataObject;

/**
* @internal
*/
class ResourceTest extends DataObject implements TestOnly
{
private static $table_name = 'ResourceTest';
Expand Down

0 comments on commit a96aafb

Please sign in to comment.