Completed
Push — master ( 977b27...be23b8 )
by Vitaliy
02:45
created
src/Element/Html.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
       } elseif (strpos($name, 'get') === 0 and !isset($arguments[0])) {
50 50
         return $this->getAttribute(strtolower(substr($name, 3)));
51 51
       } else {
52
-        throw new \Exception('Invalid method: ' . $name);
52
+        throw new \Exception('Invalid method: '.$name);
53 53
       }
54 54
     }
55 55
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
       $currentClass = $this->getAttribute('class');
63 63
 
64 64
       if (!empty($currentClass)) {
65
-        $className = $currentClass . ' ' . $className;
65
+        $className = $currentClass.' '.$className;
66 66
       }
67 67
 
68 68
       $this->setAttribute('class', $className);
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     public static function renderAttributes(array $attributes = []) {
79 79
       $attributesInline = '';
80 80
       foreach ($attributes as $name => $value) {
81
-        $attributesInline .= $name . '="' . addslashes($value) . '" ';
81
+        $attributesInline .= $name.'="'.addslashes($value).'" ';
82 82
       }
83 83
       return $attributesInline;
84 84
     }
@@ -92,10 +92,10 @@  discard block
 block discarded – undo
92 92
      * @return string
93 93
      */
94 94
     public static function tag($tag, array $attributes, $content = null) {
95
-      $html = '<' . $tag . ' ' . static::renderAttributes($attributes);
95
+      $html = '<'.$tag.' '.static::renderAttributes($attributes);
96 96
 
97 97
       if ($content !== null) {
98
-        $html .= '>' . $content . '</' . $tag . '>';
98
+        $html .= '>'.$content.'</'.$tag.'>';
99 99
       } else {
100 100
         $html .= ' />';
101 101
       }
Please login to merge, or discard this patch.
src/Element/Checkbox.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
      * @return string
94 94
      */
95 95
     public function render() {
96
-      return '<label>' . parent::render() . $this->label . '</label>';
96
+      return '<label>'.parent::render().$this->label.'</label>';
97 97
     }
98 98
 
99 99
   }
100 100
\ No newline at end of file
Please login to merge, or discard this patch.
src/CheckboxList.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
   namespace Fiv\Form;
4 4
 
5
-  trigger_error('Deprecated. Use ' . \Fiv\Form\Element\CheckboxList::class, E_USER_DEPRECATED);
5
+  trigger_error('Deprecated. Use '.\Fiv\Form\Element\CheckboxList::class, E_USER_DEPRECATED);
6 6
 
7 7
 
8 8
   /**
Please login to merge, or discard this patch.
src/RadioList.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
   namespace Fiv\Form;
4 4
 
5
-  trigger_error('Deprecated. Use ' . \Fiv\Form\Element\RadioList::class, E_USER_DEPRECATED);
5
+  trigger_error('Deprecated. Use '.\Fiv\Form\Element\RadioList::class, E_USER_DEPRECATED);
6 6
 
7 7
 
8 8
   /**
Please login to merge, or discard this patch.
src/TextArea.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
   namespace Fiv\Form;
4 4
 
5
-  trigger_error('Deprecated. Use ' . \Fiv\Form\Element\TextArea::class, E_USER_DEPRECATED);
5
+  trigger_error('Deprecated. Use '.\Fiv\Form\Element\TextArea::class, E_USER_DEPRECATED);
6 6
 
7 7
   /**
8 8
    * @deprecated
Please login to merge, or discard this patch.
src/Checkbox.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
   namespace Fiv\Form;
4 4
 
5
-  trigger_error('Deprecated. Use ' . \Fiv\Form\Element\Select::class, E_USER_DEPRECATED);
5
+  trigger_error('Deprecated. Use '.\Fiv\Form\Element\Select::class, E_USER_DEPRECATED);
6 6
 
7 7
   /**
8 8
    *
Please login to merge, or discard this patch.
Tests/Filters/CallbackFilterTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 
13 13
     public function testCustomFilter() {
14 14
 
15
-      $filter = new CallbackFilter(function ($value) {
15
+      $filter = new CallbackFilter(function($value) {
16 16
         $value = str_replace(' ', '-', $value);
17 17
         $value = trim($value, '-');
18 18
         return $value;
Please login to merge, or discard this patch.
src/Select.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
   namespace Fiv\Form;
4 4
 
5
-  trigger_error('Deprecated. Use ' . \Fiv\Form\Element\Select::class, E_USER_DEPRECATED);
5
+  trigger_error('Deprecated. Use '.\Fiv\Form\Element\Select::class, E_USER_DEPRECATED);
6 6
 
7 7
   /**
8 8
    *
Please login to merge, or discard this patch.