Completed
Push — master ( 4066ce...b4c895 )
by Sebastian
03:10
created
src/RulesHelper/AbstractDate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  * @copyright (c) 2018, Sebastian Rapetti
8 8
  * @license http://opensource.org/licenses/MIT MIT License
9 9
  */
10
-declare(strict_types = 1);
10
+declare(strict_types=1);
11 11
 
12 12
 namespace Linna\Filter\Rules;
13 13
 
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     protected function dateHaveNoTime(string $format): bool
26 26
     {
27
-        foreach (['a','A','B','g','G','h','H','i','s','u','v'] as $char) {
27
+        foreach (['a', 'A', 'B', 'g', 'G', 'h', 'H', 'i', 's', 'u', 'v'] as $char) {
28 28
             if (strpos($format, $char) !== false) {
29 29
                 return false;
30 30
             }
Please login to merge, or discard this patch.