Completed
Push — master ( b86211...ed7d82 )
by Tom
02:45
created
src/Rule.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@  discard block
 block discarded – undo
10 10
 
11 11
 	const S = 1;
12 12
 	const M = 60;
13
-	const H = self::M*60;
14
-	const D = self::H*24;
13
+	const H = self::M * 60;
14
+	const D = self::H * 24;
15 15
 
16 16
 
17 17
 	public function __construct($query, $pseudo, $depth, $index, array $properties = []) {
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
 			$num = (int) $frequency;
44 44
 			$unit = strtoupper(trim(str_replace($num, '', $frequency)));
45 45
 			
46
-			$offset = $num * constant(self::class . '::' . $unit);
46
+			$offset = $num * constant(self::class.'::'.$unit);
47 47
 
48
-			if ($time > $this->lastRun + $offset) return true;
48
+			if ($time > $this->lastRun+$offset) return true;
49 49
 			else return false;
50 50
 
51 51
 		}
Please login to merge, or discard this patch.