Passed
Push — master ( 02632b...bcda7c )
by
unknown
37:01 queued 23:42
created
class.baserecurrence.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1930,7 +1930,7 @@
 block discarded – undo
1930 1930
 					}
1931 1931
 					elseif ($this->recur['regen']) {
1932 1932
 						$year_starttime = $this->gmtime($now);
1933
-						$is_next_leapyear = $this->isLeapYear($year_starttime['tm_year'] + 1900 + 1);	// +1 next year
1933
+						$is_next_leapyear = $this->isLeapYear($year_starttime['tm_year'] + 1900 + 1); // +1 next year
1934 1934
 						$now = $daystart + ($is_next_leapyear ? 31622400 /* Leap year in seconds */ : 31536000 /* year in seconds */);
1935 1935
 
1936 1936
 						if ($now <= $dayend) {
Please login to merge, or discard this patch.
dev/generate_php-mapi-stub.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
 
120 120
 		// Filter the relevant constants
121 121
 		$relevant_prefixes = ['PR_', 'PidLid', 'MAPI', 'ec', 'RPC_', 'SYNC_'];
122
-		$relevant_constants = array_filter($constants, function ($key) use ($relevant_prefixes) {
122
+		$relevant_constants = array_filter($constants, function($key) use ($relevant_prefixes) {
123 123
 			foreach ($relevant_prefixes as $prefix) {
124 124
 				if (str_starts_with($key, $prefix)) {
125 125
 					return true;
Please login to merge, or discard this patch.