Skip to content

Commit 6ee6f68

Browse files
committed
Fix phpstan error
1 parent 71006e5 commit 6ee6f68

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

tests/Fixture/ArticlesFixture.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ class ArticlesFixture extends TestFixture
3838
'published' => 1,
3939
'created' => '2017-09-01 00:00:00',
4040
'modified' => '2017-09-01 00:00:00',
41-
]
41+
],
4242
];
4343
}

tests/Fixture/TagsFixture.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ class TagsFixture extends TestFixture
3535
'description' => 'tag3 description',
3636
'created' => '2017-09-01 00:00:00',
3737
'modified' => '2017-09-01 00:00:00',
38-
]
38+
],
3939
];
4040
}

tests/TestCase/Model/Behavior/InsertBehaviorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ private function getBaseInsertRecords()
334334
'title' => 'Sixth Article',
335335
'body' => 'Sixth Article Body',
336336
'published' => 1,
337-
]
337+
],
338338
];
339339
}
340340
}

tests/TestCase/Model/Behavior/UpsertBehaviorTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ public function testUpsertNoBeforeSave()
215215

216216
$record = [
217217
'name' => 'tag4',
218-
'description' => 'tag4 description'
218+
'description' => 'tag4 description',
219219
];
220220
$expectedRecord = $record;
221221
$expectedRecord['created IS'] = null;
@@ -490,7 +490,7 @@ private function getBaseInsertRecords()
490490
[
491491
'name' => 'tag6',
492492
'description' => 'tag6 description',
493-
]
493+
],
494494
];
495495
}
496496

@@ -513,7 +513,7 @@ private function getBaseUpdateRecords()
513513
[
514514
'name' => 'tag3',
515515
'description' => 'brand new tag3 description',
516-
]
516+
],
517517
];
518518
}
519519
}

0 commit comments

Comments
 (0)