Browse Source

Fix CS errors

ADmad 7 years ago
parent
commit
5cb5c142b3

+ 0 - 1
tests/TestCase/Database/ConnectionTest.php

@@ -35,7 +35,6 @@ use ReflectionProperty;
  */
 class ConnectionTest extends TestCase
 {
-
     public $fixtures = ['core.Things'];
 
     /**

+ 0 - 1
tests/TestCase/Database/ExpressionTypeCastingIntegrationTest.php

@@ -84,7 +84,6 @@ class OrderedUuidType extends BaseType implements ExpressionTypeInterface
  */
 class ExpressionTypeCastingIntegrationTest extends TestCase
 {
-
     public $fixtures = ['core.OrderedUuidItems'];
 
     public function setUp()

+ 1 - 1
tests/TestCase/Database/Schema/CollectionTest.php

@@ -34,7 +34,7 @@ class CollectionTest extends TestCase
      * @var array
      */
     public $fixtures = [
-        'core.Users'
+        'core.Users',
     ];
 
     /**

+ 1 - 1
tests/TestCase/Database/Schema/TableSchemaTest.php

@@ -42,7 +42,7 @@ class TableTest extends TestCase
         'core.Tags',
         'core.ArticlesTags',
         'core.Orders',
-        'core.Products'
+        'core.Products',
     ];
 
     protected $_map;

+ 1 - 1
tests/TestCase/Datasource/PaginatorTest.php

@@ -32,7 +32,7 @@ class PaginatorTest extends TestCase
      */
     public $fixtures = [
         'core.Posts', 'core.Articles', 'core.ArticlesTags',
-        'core.Authors', 'core.AuthorsTags', 'core.Tags'
+        'core.Authors', 'core.AuthorsTags', 'core.Tags',
     ];
 
     /**

+ 0 - 1
tests/TestCase/Mailer/EmailTest.php

@@ -107,7 +107,6 @@ class TestEmail extends Email
  */
 class EmailTest extends TestCase
 {
-
     public $fixtures = ['core.Users'];
 
     /**

+ 1 - 1
tests/TestCase/ORM/AssociationProxyTest.php

@@ -29,7 +29,7 @@ class AssociationProxyTest extends TestCase
      * @var array
      */
     public $fixtures = [
-        'core.Articles', 'core.Authors', 'core.Comments'
+        'core.Articles', 'core.Authors', 'core.Comments',
     ];
 
     /**

+ 1 - 1
tests/TestCase/ORM/Behavior/BehaviorRegressionTest.php

@@ -39,7 +39,7 @@ class BehaviorRegressionTest extends TestCase
      */
     public $fixtures = [
         'core.NumberTrees',
-        'core.Translates'
+        'core.Translates',
     ];
 
     /**

+ 1 - 1
tests/TestCase/ORM/Behavior/CounterCacheBehaviorTest.php

@@ -49,7 +49,7 @@ class CounterCacheBehaviorTest extends TestCase
         'core.CounterCachePosts',
         'core.CounterCacheComments',
         'core.CounterCacheUsers',
-        'core.CounterCacheUserCategoryPosts'
+        'core.CounterCacheUserCategoryPosts',
     ];
 
     /**

+ 1 - 1
tests/TestCase/ORM/Behavior/TimestampBehaviorTest.php

@@ -45,7 +45,7 @@ class TimestampBehaviorTest extends TestCase
      * @var array
      */
     public $fixtures = [
-        'core.Users'
+        'core.Users',
     ];
 
     /**

+ 1 - 1
tests/TestCase/ORM/Behavior/TranslateBehaviorTest.php

@@ -48,7 +48,7 @@ class TranslateBehaviorTest extends TestCase
         'core.SpecialTags',
         'core.Tags',
         'core.Comments',
-        'core.Translates'
+        'core.Translates',
     ];
 
     public function tearDown()

+ 1 - 1
tests/TestCase/ORM/Behavior/TreeBehaviorTest.php

@@ -30,7 +30,7 @@ class TreeBehaviorTest extends TestCase
      */
     public $fixtures = [
         'core.MenuLinkTrees',
-        'core.NumberTrees'
+        'core.NumberTrees',
     ];
 
     public function setUp()

+ 1 - 1
tests/TestCase/ORM/BindingKeyTest.php

@@ -30,7 +30,7 @@ class BindingKeyTest extends TestCase
     public $fixtures = [
         'core.AuthUsers',
         'core.SiteAuthors',
-        'core.Users'
+        'core.Users',
     ];
 
     /**

+ 1 - 1
tests/TestCase/ORM/CompositeKeysTest.php

@@ -50,7 +50,7 @@ class CompositeKeyTest extends TestCase
         'core.SiteArticles',
         'core.SiteArticlesTags',
         'core.SiteAuthors',
-        'core.SiteTags'
+        'core.SiteTags',
     ];
 
     /**

+ 1 - 1
tests/TestCase/ORM/MarshallerTest.php

@@ -103,7 +103,7 @@ class MarshallerTest extends TestCase
         'core.Comments',
         'core.SpecialTags',
         'core.Tags',
-        'core.Users'
+        'core.Users',
     ];
 
     /**

+ 1 - 1
tests/TestCase/ORM/QueryRegressionTest.php

@@ -45,7 +45,7 @@ class QueryRegressionTest extends TestCase
         'core.SpecialTags',
         'core.TagsTranslations',
         'core.Translates',
-        'core.Users'
+        'core.Users',
     ];
 
     public $autoFixtures = false;

+ 1 - 1
tests/TestCase/ORM/QueryTest.php

@@ -47,7 +47,7 @@ class QueryTest extends TestCase
         'core.Comments',
         'core.Datatypes',
         'core.Posts',
-        'core.Tags'
+        'core.Tags',
     ];
 
     /**

+ 0 - 1
tests/TestCase/ORM/ResultSetTest.php

@@ -28,7 +28,6 @@ use Cake\TestSuite\TestCase;
  */
 class ResultSetTest extends TestCase
 {
-
     public $fixtures = ['core.Articles', 'core.Authors', 'core.Comments'];
 
     /**

+ 1 - 1
tests/TestCase/ORM/TableTest.php

@@ -65,7 +65,7 @@ class TableTest extends TestCase
         'core.Members',
         'core.PolymorphicTagged',
         'core.SiteArticles',
-        'core.Users'
+        'core.Users',
     ];
 
     /**