Passed
Push — master ( 8f9737...11a21a )
by
unknown
09:15 queued 05:44
created
vendor/composer/autoload_real.php 2 patches
Indentation   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -4,70 +4,70 @@
 block discarded – undo
4 4
 
5 5
 class ComposerAutoloaderInit153a56a781a72686b71399955d98204f
6 6
 {
7
-    private static $loader;
7
+	private static $loader;
8 8
 
9
-    public static function loadClassLoader($class)
10
-    {
11
-        if ('Composer\Autoload\ClassLoader' === $class) {
12
-            require __DIR__ . '/ClassLoader.php';
13
-        }
14
-    }
9
+	public static function loadClassLoader($class)
10
+	{
11
+		if ('Composer\Autoload\ClassLoader' === $class) {
12
+			require __DIR__ . '/ClassLoader.php';
13
+		}
14
+	}
15 15
 
16
-    /**
17
-     * @return \Composer\Autoload\ClassLoader
18
-     */
19
-    public static function getLoader()
20
-    {
21
-        if (null !== self::$loader) {
22
-            return self::$loader;
23
-        }
16
+	/**
17
+	 * @return \Composer\Autoload\ClassLoader
18
+	 */
19
+	public static function getLoader()
20
+	{
21
+		if (null !== self::$loader) {
22
+			return self::$loader;
23
+		}
24 24
 
25
-        spl_autoload_register(array('ComposerAutoloaderInit153a56a781a72686b71399955d98204f', 'loadClassLoader'), true, true);
26
-        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
27
-        spl_autoload_unregister(array('ComposerAutoloaderInit153a56a781a72686b71399955d98204f', 'loadClassLoader'));
25
+		spl_autoload_register(array('ComposerAutoloaderInit153a56a781a72686b71399955d98204f', 'loadClassLoader'), true, true);
26
+		self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
27
+		spl_autoload_unregister(array('ComposerAutoloaderInit153a56a781a72686b71399955d98204f', 'loadClassLoader'));
28 28
 
29
-        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
-        if ($useStaticLoader) {
31
-            require __DIR__ . '/autoload_static.php';
29
+		$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
+		if ($useStaticLoader) {
31
+			require __DIR__ . '/autoload_static.php';
32 32
 
33
-            call_user_func(\Composer\Autoload\ComposerStaticInit153a56a781a72686b71399955d98204f::getInitializer($loader));
34
-        } else {
35
-            $map = require __DIR__ . '/autoload_namespaces.php';
36
-            foreach ($map as $namespace => $path) {
37
-                $loader->set($namespace, $path);
38
-            }
33
+			call_user_func(\Composer\Autoload\ComposerStaticInit153a56a781a72686b71399955d98204f::getInitializer($loader));
34
+		} else {
35
+			$map = require __DIR__ . '/autoload_namespaces.php';
36
+			foreach ($map as $namespace => $path) {
37
+				$loader->set($namespace, $path);
38
+			}
39 39
 
40
-            $map = require __DIR__ . '/autoload_psr4.php';
41
-            foreach ($map as $namespace => $path) {
42
-                $loader->setPsr4($namespace, $path);
43
-            }
40
+			$map = require __DIR__ . '/autoload_psr4.php';
41
+			foreach ($map as $namespace => $path) {
42
+				$loader->setPsr4($namespace, $path);
43
+			}
44 44
 
45
-            $classMap = require __DIR__ . '/autoload_classmap.php';
46
-            if ($classMap) {
47
-                $loader->addClassMap($classMap);
48
-            }
49
-        }
45
+			$classMap = require __DIR__ . '/autoload_classmap.php';
46
+			if ($classMap) {
47
+				$loader->addClassMap($classMap);
48
+			}
49
+		}
50 50
 
51
-        $loader->register(true);
51
+		$loader->register(true);
52 52
 
53
-        if ($useStaticLoader) {
54
-            $includeFiles = Composer\Autoload\ComposerStaticInit153a56a781a72686b71399955d98204f::$files;
55
-        } else {
56
-            $includeFiles = require __DIR__ . '/autoload_files.php';
57
-        }
58
-        foreach ($includeFiles as $fileIdentifier => $file) {
59
-            composerRequire153a56a781a72686b71399955d98204f($fileIdentifier, $file);
60
-        }
53
+		if ($useStaticLoader) {
54
+			$includeFiles = Composer\Autoload\ComposerStaticInit153a56a781a72686b71399955d98204f::$files;
55
+		} else {
56
+			$includeFiles = require __DIR__ . '/autoload_files.php';
57
+		}
58
+		foreach ($includeFiles as $fileIdentifier => $file) {
59
+			composerRequire153a56a781a72686b71399955d98204f($fileIdentifier, $file);
60
+		}
61 61
 
62
-        return $loader;
63
-    }
62
+		return $loader;
63
+	}
64 64
 }
65 65
 
66 66
 function composerRequire153a56a781a72686b71399955d98204f($fileIdentifier, $file)
67 67
 {
68
-    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
69
-        require $file;
68
+	if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
69
+		require $file;
70 70
 
71
-        $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
72
-    }
71
+		$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
72
+	}
73 73
 }
Please login to merge, or discard this patch.
Braces   +7 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,8 +6,7 @@  discard block
 block discarded – undo
6 6
 {
7 7
     private static $loader;
8 8
 
9
-    public static function loadClassLoader($class)
10
-    {
9
+    public static function loadClassLoader($class) {
11 10
         if ('Composer\Autoload\ClassLoader' === $class) {
12 11
             require __DIR__ . '/ClassLoader.php';
13 12
         }
@@ -16,8 +15,7 @@  discard block
 block discarded – undo
16 15
     /**
17 16
      * @return \Composer\Autoload\ClassLoader
18 17
      */
19
-    public static function getLoader()
20
-    {
18
+    public static function getLoader() {
21 19
         if (null !== self::$loader) {
22 20
             return self::$loader;
23 21
         }
@@ -31,7 +29,8 @@  discard block
 block discarded – undo
31 29
             require __DIR__ . '/autoload_static.php';
32 30
 
33 31
             call_user_func(\Composer\Autoload\ComposerStaticInit153a56a781a72686b71399955d98204f::getInitializer($loader));
34
-        } else {
32
+        }
33
+        else {
35 34
             $map = require __DIR__ . '/autoload_namespaces.php';
36 35
             foreach ($map as $namespace => $path) {
37 36
                 $loader->set($namespace, $path);
@@ -52,7 +51,8 @@  discard block
 block discarded – undo
52 51
 
53 52
         if ($useStaticLoader) {
54 53
             $includeFiles = Composer\Autoload\ComposerStaticInit153a56a781a72686b71399955d98204f::$files;
55
-        } else {
54
+        }
55
+        else {
56 56
             $includeFiles = require __DIR__ . '/autoload_files.php';
57 57
         }
58 58
         foreach ($includeFiles as $fileIdentifier => $file) {
@@ -63,8 +63,7 @@  discard block
 block discarded – undo
63 63
     }
64 64
 }
65 65
 
66
-function composerRequire153a56a781a72686b71399955d98204f($fileIdentifier, $file)
67
-{
66
+function composerRequire153a56a781a72686b71399955d98204f($fileIdentifier, $file) {
68 67
     if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
69 68
         require $file;
70 69
 
Please login to merge, or discard this patch.
vendor/composer/autoload_files.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 $baseDir = dirname($vendorDir);
7 7
 
8 8
 return array(
9
-    '158e247719544c05f5e89c414f630c24' => $baseDir . '/version.php',
10
-    'f2969980cdf0dddd210ef5448430b9c0' => $baseDir . '/lib/core/gsyncdefs.php',
11
-    'd2a63a53b4a43a2bd71de0cec5c1abfb' => $baseDir . '/lib/utils/compat.php',
9
+	'158e247719544c05f5e89c414f630c24' => $baseDir . '/version.php',
10
+	'f2969980cdf0dddd210ef5448430b9c0' => $baseDir . '/lib/core/gsyncdefs.php',
11
+	'd2a63a53b4a43a2bd71de0cec5c1abfb' => $baseDir . '/lib/utils/compat.php',
12 12
 );
Please login to merge, or discard this patch.
lib/grommunio/mapiutils.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
 					],
143 143
 				], // EXISTS OR
144 144
 			],
145
-		];        // global OR
145
+		]; // global OR
146 146
 	}
147 147
 
148 148
 	/**
Please login to merge, or discard this patch.
lib/grommunio/grommunio.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1389,8 +1389,7 @@
 block discarded – undo
1389 1389
 
1390 1390
 		// if the search range is set limit the result to it, otherwise return all found messages
1391 1391
 		$rows = (is_array($searchRange) && isset($searchRange[0], $searchRange[1])) ?
1392
-			mapi_table_queryrows($table, [PR_ENTRYID, PR_SOURCE_KEY], $searchRange[0], $searchRange[1] - $searchRange[0] + 1) :
1393
-			mapi_table_queryrows($table, [PR_ENTRYID, PR_SOURCE_KEY], 0, SEARCH_MAXRESULTS);
1392
+			mapi_table_queryrows($table, [PR_ENTRYID, PR_SOURCE_KEY], $searchRange[0], $searchRange[1] - $searchRange[0] + 1) : mapi_table_queryrows($table, [PR_ENTRYID, PR_SOURCE_KEY], 0, SEARCH_MAXRESULTS);
1394 1393
 
1395 1394
 		$cnt = count($rows);
1396 1395
 		$items['searchtotal'] = $cnt;
Please login to merge, or discard this patch.
lib/wbxml/wbxmldefs.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
 				0x3F => "DisallowNewTimeProposal", // Since 14.0
214 214
 			],
215 215
 			// AirNotify
216
-			3 => [ // Code page 3 is no longer in use, however, tokens 05 through 17 have been defined. 20100501
216
+			3 => [// Code page 3 is no longer in use, however, tokens 05 through 17 have been defined. 20100501
217 217
 				0x05 => "Notify",
218 218
 				0x06 => "Notification",
219 219
 				0x07 => "Version",
@@ -565,7 +565,7 @@  discard block
 block discarded – undo
565 565
 				0x12 => "Data", // Since 14.1
566 566
 			],
567 567
 			// AirSyncBase
568
-			0x11 => [ // Since 12.0
568
+			0x11 => [// Since 12.0
569 569
 				0x05 => "BodyPreference",
570 570
 				0x06 => "Type",
571 571
 				0x07 => "TruncationSize",
@@ -608,7 +608,7 @@  discard block
 block discarded – undo
608 608
 				0x2D => "InstanceId", // Since 16.0
609 609
 			],
610 610
 			// Settings
611
-			0x12 => [ // Since 12.0
611
+			0x12 => [// Since 12.0
612 612
 				0x05 => "Settings",
613 613
 				0x06 => "Status",
614 614
 				0x07 => "Get",
@@ -649,7 +649,7 @@  discard block
 block discarded – undo
649 649
 				0x2B => "RightsManagementInformation", // Since 14.1
650 650
 			],
651 651
 			// DocumentLibrary
652
-			0x13 => [ // Since 12.0
652
+			0x13 => [// Since 12.0
653 653
 				0x05 => "LinkId",
654 654
 				0x06 => "DisplayName",
655 655
 				0x07 => "IsFolder",
@@ -660,7 +660,7 @@  discard block
 block discarded – undo
660 660
 				0x0C => "ContentType",
661 661
 			],
662 662
 			// ItemOperations
663
-			0x14 => [ // Since 12.0
663
+			0x14 => [// Since 12.0
664 664
 				0x05 => "ItemOperations",
665 665
 				0x06 => "Fetch",
666 666
 				0x07 => "Store",
@@ -684,7 +684,7 @@  discard block
 block discarded – undo
684 684
 				0x19 => "MoveAlways", // Since 14.0
685 685
 			],
686 686
 			// ComposeMail
687
-			0x15 => [ // Since 14.0
687
+			0x15 => [// Since 14.0
688 688
 				0x05 => "SendMail",
689 689
 				0x06 => "SmartForward",
690 690
 				0x07 => "SmartReply",
@@ -706,7 +706,7 @@  discard block
 block discarded – undo
706 706
 				0x18 => "Email", // Since 16.0
707 707
 			],
708 708
 			// POOMMAIL2
709
-			0x16 => [ // Since 14.0
709
+			0x16 => [// Since 14.0
710 710
 				0x05 => "UmCallerId",
711 711
 				0x06 => "UmUserNotes",
712 712
 				0x07 => "UmAttDuration",
@@ -727,7 +727,7 @@  discard block
 block discarded – undo
727 727
 				0x17 => "Send", // Since 16.0
728 728
 			],
729 729
 			// Notes
730
-			0x17 => [ // Since 14.0
730
+			0x17 => [// Since 14.0
731 731
 				0x05 => "Subject",
732 732
 				0x06 => "MessageClass",
733 733
 				0x07 => "LastModifiedDate",
@@ -735,7 +735,7 @@  discard block
 block discarded – undo
735 735
 				0x09 => "Category",
736 736
 			],
737 737
 			// RightsManagement
738
-			0x18 => [ // Since 14.1
738
+			0x18 => [// Since 14.1
739 739
 				0x05 => "RightsManagementSupport",
740 740
 				0x06 => "RightsManagementTemplates",
741 741
 				0x07 => "RightsManagementTemplate",
@@ -758,7 +758,7 @@  discard block
 block discarded – undo
758 758
 				0x18 => "RemoveRightsManagementProtection",
759 759
 			],
760 760
 			// FIND
761
-			0x19 => [ // Since 16.1
761
+			0x19 => [// Since 16.1
762 762
 				0x05 => "Find", // Since 16.1
763 763
 				0x06 => "SearchId", // Since 16.1
764 764
 				0x07 => "ExecuteSearch", // Since 16.1
Please login to merge, or discard this patch.
lib/utils/timezoneutil.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 		"035" => ["Eastern Standard Time", "(GMT-05:00) Eastern Time (US and Canada)"],
33 33
 		"040" => ["US Eastern Standard Time", "(GMT-05:00) Indiana (East)"],
34 34
 		"045" => ["SA Pacific Standard Time", "(GMT-05:00) Bogota, Lima, Quito"],
35
-		"uk1" => ["Venezuela Standard Time", "(GMT-04:30) Caracas"],                     // added
35
+		"uk1" => ["Venezuela Standard Time", "(GMT-04:30) Caracas"], // added
36 36
 		"050" => ["Atlantic Standard Time", "(GMT-04:00) Atlantic Time (Canada)"],
37 37
 		"055" => ["SA Western Standard Time", "(GMT-04:00) Caracas, La Paz"],
38 38
 		"056" => ["Pacific SA Standard Time", "(GMT-04:00) Santiago"],
Please login to merge, or discard this patch.