Completed
Push — master ( 44c287...6cb952 )
by Maxim
01:53
created
StaticMap.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@
 block discarded – undo
16 16
 class StaticMap extends Widget
17 17
 {
18 18
 
19
-    public $imageOptions = [];
20
-    public $map = [];
19
+    public $imageOptions = [ ];
20
+    public $map = [ ];
21 21
 
22 22
     public function run()
23 23
     {
Please login to merge, or discard this patch.
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Codru Components
4
- *
5
- * @author Maxim Vasiliev <[email protected]>
6
- * @license http://www.opensource.org/licenses/bsd-license.php
7
- */
3
+     * Codru Components
4
+     *
5
+     * @author Maxim Vasiliev <[email protected]>
6
+     * @license http://www.opensource.org/licenses/bsd-license.php
7
+     */
8 8
 
9 9
 namespace codru\staticmap\types;
10 10
 
Please login to merge, or discard this patch.
tests/_bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 
4 4
 defined('YII_DEBUG') or define('YII_DEBUG', true);
5 5
 defined('YII_ENV') or define('YII_ENV', 'dev');
6
-require_once __DIR__ . implode(DIRECTORY_SEPARATOR, ['', '..', 'vendor', 'autoload.php']);
7
-require_once __DIR__ . implode(DIRECTORY_SEPARATOR, ['', '..', 'vendor', 'yiisoft', 'yii2', 'Yii.php']);
6
+require_once __DIR__ . implode(DIRECTORY_SEPARATOR, [ '', '..', 'vendor', 'autoload.php' ]);
7
+require_once __DIR__ . implode(DIRECTORY_SEPARATOR, [ '', '..', 'vendor', 'yiisoft', 'yii2', 'Yii.php' ]);
8 8
 Yii::setAlias('@tests', __DIR__);
9 9
 Yii::setAlias('@data', __DIR__ . DIRECTORY_SEPARATOR . '_data');
Please login to merge, or discard this patch.
tests/unit/_config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
     'language' => 'en',
6 6
     'basePath' => \Yii::getAlias('@tests'),
7 7
     'runtimePath' => \Yii::getAlias('@tests/_output'),
8
-    'bootstrap' => [],
8
+    'bootstrap' => [ ],
9 9
 ];
Please login to merge, or discard this patch.
types/OpenStreet.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Codru Components
4
- *
5
- * @author Maxim Vasiliev <[email protected]>
6
- * @license http://www.opensource.org/licenses/bsd-license.php
7
- */
3
+     * Codru Components
4
+     *
5
+     * @author Maxim Vasiliev <[email protected]>
6
+     * @license http://www.opensource.org/licenses/bsd-license.php
7
+     */
8 8
 
9 9
 namespace codru\staticmap\types;
10 10
 
Please login to merge, or discard this patch.
tests/unit/OpenStreetTest.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Codru Components
4
- *
5
- * @author Maxim Vasiliev <[email protected]>
6
- * @license http://www.opensource.org/licenses/bsd-license.php
7
- */
3
+     * Codru Components
4
+     *
5
+     * @author Maxim Vasiliev <[email protected]>
6
+     * @license http://www.opensource.org/licenses/bsd-license.php
7
+     */
8 8
 
9 9
 namespace codru\staticmap\types;
10 10
 
Please login to merge, or discard this patch.
types/Google.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Codru Components
4
- *
5
- * @author Maxim Vasiliev <[email protected]>
6
- * @license http://www.opensource.org/licenses/bsd-license.php
7
- */
3
+     * Codru Components
4
+     *
5
+     * @author Maxim Vasiliev <[email protected]>
6
+     * @license http://www.opensource.org/licenses/bsd-license.php
7
+     */
8 8
 
9 9
 namespace codru\staticmap\types;
10 10
 
Please login to merge, or discard this patch.