Completed
Push — master ( f63d14...15be2a )
by Marc
03:03
created
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.