Completed
Push — master ( 8cc1eb...ac00c7 )
by Marc
03:27
created
core/web/Twig.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -41,38 +41,38 @@  discard block
 block discarded – undo
41 41
     public function getFunctions()
42 42
     {
43 43
         return [
44
-            'menuFindAll' => function ($container, $parentNavId) {
44
+            'menuFindAll' => function($container, $parentNavId) {
45 45
                 return Yii::$app->menu->findAll(['container' => $container, 'parent_nav_id' => $parentNavId]);
46 46
             },
47
-            'menuFindOne' => function ($id) {
47
+            'menuFindOne' => function($id) {
48 48
                 return Yii::$app->menu->findOne(['id' => $id]);
49 49
             },
50
-            'menuCurrent' => function () {
50
+            'menuCurrent' => function() {
51 51
                 return Yii::$app->menu->current;
52 52
             },
53
-            'menuCurrentLevel' => function ($level) {
53
+            'menuCurrentLevel' => function($level) {
54 54
                 return Yii::$app->menu->getLevelCurrent($level);
55 55
             },
56
-            'menuLevelContainer' => function ($level) {
56
+            'menuLevelContainer' => function($level) {
57 57
                 return Yii::$app->menu->getLevelContainer($level);
58 58
             },
59
-            'asset' => function ($name) {
59
+            'asset' => function($name) {
60 60
                 return Yii::$app->getAssetManager()->getBundle($name);
61 61
             },
62
-            'filterApply' => function ($imageId, $filterIdentifier) {
62
+            'filterApply' => function($imageId, $filterIdentifier) {
63 63
                 return Yii::$app->storage->getImage($imageId)->applyFilter($filterIdentifier);
64 64
             },
65
-            'image' => function ($imageId) {
65
+            'image' => function($imageId) {
66 66
                 return Yii::$app->storage->getImage($imageId);
67 67
             },
68
-            'element' => function () {
68
+            'element' => function() {
69 69
                 $args = func_get_args();
70 70
                 $method = $args[0];
71 71
                 unset($args[0]);
72 72
 
73 73
                 return Yii::$app->element->getElement($method, $args);
74 74
             },
75
-            't' => function () {
75
+            't' => function() {
76 76
                 $args = func_get_args();
77 77
 
78 78
                 return call_user_func_array(['Yii', 't'], $args);
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
             $twig->addFunction(new Twig_SimpleFunction($name, $lambda));
112 112
         }
113 113
         
114
-        $twig->addFilter(new Twig_SimpleFilter('strftime', function ($timestamp, $format) {
114
+        $twig->addFilter(new Twig_SimpleFilter('strftime', function($timestamp, $format) {
115 115
             if (is_numeric($timestamp)) {
116 116
                 return strftime($format, $timestamp);
117 117
             }
Please login to merge, or discard this patch.
core/TagParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
     {
124 124
         if (!is_object($this->tags[$tag])) {
125 125
             $this->tags[$tag] = Yii::createObject($this->tags[$tag]);
126
-            Yii::trace('tag parser object generated for:'. $tag, __CLASS__);
126
+            Yii::trace('tag parser object generated for:'.$tag, __CLASS__);
127 127
         }
128 128
     }
129 129
     
Please login to merge, or discard this patch.
core/console/commands/HealthController.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         
47 47
         @chdir(Yii::getAlias('@app'));
48 48
 
49
-        $this->output('The directory the health commands is applying to: ' . Yii::getAlias('@app'));
49
+        $this->output('The directory the health commands is applying to: '.Yii::getAlias('@app'));
50 50
         
51 51
         foreach ($this->folders as $folder => $writable) {
52 52
             $mode = ($writable) ? 0777 : 0775;
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Yii;
6 6
 use yii\helpers\FileHelper;
7
-use yii\helpers\Console;
8 7
 use yii\imagine\Image;
9 8
 
10 9
 /**
Please login to merge, or discard this patch.
core/console/commands/views/crud/create_controller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,5 +21,5 @@
 block discarded – undo
21 21
     /**
22 22
      * @var string The path to the model which is the provider for the rules and fields.
23 23
      */
24
-    public $modelClass = '<?= $modelClass;?>';
24
+    public $modelClass = '<?= $modelClass; ?>';
25 25
 }
26 26
\ No newline at end of file
Please login to merge, or discard this patch.
core/tag/tags/TelTag.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      */
50 50
     public function parse($value, $sub)
51 51
     {
52
-        return Html::a(empty($sub) ? $value : $sub, 'tel:' . $this->ensureNumber($value));
52
+        return Html::a(empty($sub) ? $value : $sub, 'tel:'.$this->ensureNumber($value));
53 53
     }
54 54
         
55 55
     private function ensureNumber($number)
Please login to merge, or discard this patch.
core/console/commands/views/crud/create_api.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,5 +21,5 @@
 block discarded – undo
21 21
     /**
22 22
      * @var string The path to the model which is the provider for the rules and fields.
23 23
      */
24
-    public $modelClass = '<?= $modelClass;?>';
24
+    public $modelClass = '<?= $modelClass; ?>';
25 25
 }
26 26
\ No newline at end of file
Please login to merge, or discard this patch.
core/web/filters/ResponseCache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@
 block discarded – undo
157 157
             return $response->send();
158 158
         }
159 159
         
160
-        $response->on(Response::EVENT_AFTER_SEND, function ($event) use ($action) {
160
+        $response->on(Response::EVENT_AFTER_SEND, function($event) use ($action) {
161 161
             $this->callActionCallable($action->id, $event->sender->content);
162 162
         });
163 163
         
Please login to merge, or discard this patch.
core/web/JsonLd.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     {
52 52
         self::addGraph([
53 53
             "@context" => "http://schema.org",
54
-            "name" => $firstname . ' ' . $lastname,
54
+            "name" => $firstname.' '.$lastname,
55 55
             "givenName" => $firstname,
56 56
             "familyName" => $lastname,
57 57
             "jobTitle" => $jobTitle
@@ -115,8 +115,8 @@  discard block
 block discarded – undo
115 115
     private static function registerView()
116 116
     {
117 117
         if (self::$_view === null) {
118
-            Yii::$app->view->on(View::EVENT_BEGIN_BODY, function ($event) {
119
-                echo '<script type="application/ld+json">' . Json::encode($event->sender->params) . '</script>';
118
+            Yii::$app->view->on(View::EVENT_BEGIN_BODY, function($event) {
119
+                echo '<script type="application/ld+json">'.Json::encode($event->sender->params).'</script>';
120 120
             });
121 121
                     
122 122
             self::$_view = true;
Please login to merge, or discard this patch.
core/web/ExternalLink.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     public function setHref($href)
54 54
     {
55 55
         if (StringHelper::startsWith($href, '//')) {
56
-            $this->_href = Url::base(true) . str_replace('//', '/', $href);
56
+            $this->_href = Url::base(true).str_replace('//', '/', $href);
57 57
         } else {
58 58
             $this->_href = Url::ensureHttp($href);
59 59
         }
Please login to merge, or discard this patch.