Passed
Pull Request — master (#1257)
by René
04:58 queued 01:34
created
tests/Unit/Factories/PreferencesFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
  */
29 29
 $fm->define('OCA\Polls\Db\Preferences')->setDefinitions([
30 30
 	'type' => 'textPoll',
31
-	'timestamp' => function() {
31
+	'timestamp' => function () {
32 32
 		$date = new DateTime('today');
33 33
 		return $date->getTimestamp();
34 34
 	},
Please login to merge, or discard this patch.
tests/Unit/Factories/LogFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
  * General factory for the comment model.
28 28
  */
29 29
 $fm->define('OCA\Polls\Db\Log')->setDefinitions([
30
-	'created' => function() {
30
+	'created' => function () {
31 31
 		$date = new DateTime('yesterday');
32 32
 		return $date->getTimestamp();
33 33
 	},
Please login to merge, or discard this patch.