Completed
Push — develop ( 09aeb9...98934b )
by Tom
04:28
created
src/N98/Util/VerifyOrDie.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * this file is part of magerun
4
- *
5
- * @author Tom Klingenberg <https://github.com/ktomk>
6
- */
3
+     * this file is part of magerun
4
+     *
5
+     * @author Tom Klingenberg <https://github.com/ktomk>
6
+     */
7 7
 namespace N98\Util;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
src/N98/Util/AutoloadRestorer.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * this file is part of magerun
4
- *
5
- * @author Tom Klingenberg <https://github.com/ktomk>
6
- */
3
+     * this file is part of magerun
4
+     *
5
+     * @author Tom Klingenberg <https://github.com/ktomk>
6
+     */
7 7
 namespace N98\Util;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
src/N98/Util/Console/Enabler.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * this file is part of magerun
4
- *
5
- * @author Tom Klingenberg <https://github.com/ktomk>
6
- */
3
+     * this file is part of magerun
4
+     *
5
+     * @author Tom Klingenberg <https://github.com/ktomk>
6
+     */
7 7
 namespace N98\Util;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
src/N98/Util/Console/Helper/IoHelper.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * this file is part of magerun
4
- *
5
- * @author Tom Klingenberg <https://github.com/ktomk>
6
- */
3
+     * this file is part of magerun
4
+     *
5
+     * @author Tom Klingenberg <https://github.com/ktomk>
6
+     */
7 7
 namespace N98\Util;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
src/N98/Util/Console/Helper/Table/Renderer/TextRenderer.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * this file is part of magerun
4
- *
5
- * @author Tom Klingenberg <https://github.com/ktomk>
6
- */
3
+     * this file is part of magerun
4
+     *
5
+     * @author Tom Klingenberg <https://github.com/ktomk>
6
+     */
7 7
 namespace N98\Util;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
src/N98/Util/Console/Helper/Table/Renderer/XmlRenderer.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * this file is part of magerun
4
- *
5
- * @author Tom Klingenberg <https://github.com/ktomk>
6
- */
3
+     * this file is part of magerun
4
+     *
5
+     * @author Tom Klingenberg <https://github.com/ktomk>
6
+     */
7 7
 namespace N98\Util;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
src/N98/Util/OperatingSystem.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * this file is part of magerun
4
- *
5
- * @author Tom Klingenberg <https://github.com/ktomk>
6
- */
3
+     * this file is part of magerun
4
+     *
5
+     * @author Tom Klingenberg <https://github.com/ktomk>
6
+     */
7 7
 namespace N98\Util;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public static function isLinux()
28 28
     {
29
-        return (bool) stristr(PHP_OS, 'linux');
29
+        return (bool)stristr(PHP_OS, 'linux');
30 30
     }
31 31
 
32 32
     /**
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     public static function isNetware()
50 50
     {
51
-        return (bool) stristr(PHP_OS, 'netware');
51
+        return (bool)stristr(PHP_OS, 'netware');
52 52
     }
53 53
 
54 54
     /**
Please login to merge, or discard this patch.
src/N98/Magento/DbSettings.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -97,8 +97,8 @@  discard block
 block discarded – undo
97 97
             'password'    => null,
98 98
         );
99 99
 
100
-        $config           = ((array) $resources->default_setup->connection) + $config;
101
-        $config['prefix'] = (string) $resources->db->table_prefix;
100
+        $config           = ((array)$resources->default_setup->connection) + $config;
101
+        $config['prefix'] = (string)$resources->db->table_prefix;
102 102
 
103 103
         // known parameters: host, port, unix_socket, dbname, username, password, options, charset, persistent,
104 104
         //                   driver_options
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 
109 109
         /* @see Varien_Db_Adapter_Pdo_Mysql::_connect */
110 110
         if (strpos($config['host'], '/') !== false) {
111
-            $config['unix_socket'] = (string) $config['host'];
111
+            $config['unix_socket'] = (string)$config['host'];
112 112
             $config['host'] = null;
113 113
             $config['port'] = null;
114 114
         } elseif (strpos($config['host'], ':') !== false) {
Please login to merge, or discard this patch.
src/N98/Magento/Command/Media/DumpCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
             $finder->exclude($commandConfig['strip']['folders']);
44 44
         }
45 45
 
46
-        $filename = (string) $input->getArgument('filename');
46
+        $filename = (string)$input->getArgument('filename');
47 47
         if (is_dir($filename)) { // support for dot dir
48 48
             $filename = realpath($filename);
49 49
             $filename .= '/';
Please login to merge, or discard this patch.