Completed
Push — master ( 61d36b...98a21f )
by Dmytro
01:47
created
framework/core/Errors.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,9 +31,9 @@
 block discarded – undo
31 31
      */
32 32
     public static function displayError($errorMessage, $fieldName = null) {
33 33
         if (!is_null($fieldName)) {
34
-            return ('<label for="' . $fieldName . '" class="form-error">' . $errorMessage . '</label>');
34
+            return ('<label for="'.$fieldName.'" class="form-error">'.$errorMessage.'</label>');
35 35
         } else {
36
-            return ('<span class="label label-danger pull-right form-error">' . $errorMessage . '</span>');
36
+            return ('<span class="label label-danger pull-right form-error">'.$errorMessage.'</span>');
37 37
         }
38 38
     }
39 39
 
Please login to merge, or discard this patch.
framework/core/OutputStream.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      * @param string $str String to output.
55 55
      */
56 56
     public static function line($str = "") {
57
-        self::output($str . "\n");
57
+        self::output($str."\n");
58 58
     }
59 59
 
60 60
     /**
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             $str = str_replace("{{time}}", date($format, $time), $str);
76 76
             self::line($str);
77 77
         } else {
78
-            self::line(date($format, $time) . " " . $str);
78
+            self::line(date($format, $time)." ".$str);
79 79
         }
80 80
     }
81 81
 
@@ -91,11 +91,11 @@  discard block
 block discarded – undo
91 91
      */
92 92
     public static function message($msgType, $str, $format = "\[Y-m-d H:i:s\]", $time = null) {
93 93
         if (strpos($str, "{{time}}") === false) {
94
-            $str = "{{time}} " . $str;
94
+            $str = "{{time}} ".$str;
95 95
         }
96 96
 
97 97
         self::log(
98
-            '<b><font color="' . $msgType . '">' . $str . '</font></b>',
98
+            '<b><font color="'.$msgType.'">'.$str.'</font></b>',
99 99
             $format,
100 100
             $time
101 101
         );
Please login to merge, or discard this patch.
framework/ui/UIComponent.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
             if (isset($this->$attributeName)) {
113 113
                 $this->$attributeName = $attributeValue;
114 114
             } else {
115
-                throw new \Exception("Wrong attribute '" . $attributeName . "' for " . get_class($this) . " component");
115
+                throw new \Exception("Wrong attribute '".$attributeName."' for ".get_class($this)." component");
116 116
             }
117 117
         }
118 118
     }
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
     public function getStyle() {
163 163
         $style = "";
164 164
         foreach ($this->style as $propertyName => $propertyValue) {
165
-            $style .= $propertyName . ":" . $propertyValue . ";";
165
+            $style .= $propertyName.":".$propertyValue.";";
166 166
         }
167 167
 
168 168
         return $style;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
      * css($propertyName, $propertyValue) Set the value of a CSS property.
136 136
      *
137 137
      * @param string $propertyName Name of a CSS property.
138
-     * @param mixed $propertyValue Value of a CSS property.
138
+     * @param string $propertyValue Value of a CSS property.
139 139
      *
140 140
      * @return Value of the CSS property or NULL if property is not exists.
141 141
      */
Please login to merge, or discard this patch.
framework/ui/controls/UIDialog.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         $this->buttons = $buttons;
35 35
 
36 36
         if (empty($template)) {
37
-            $template = __DIR__ . self::DEFAULT_TEMPLATE;
37
+            $template = __DIR__.self::DEFAULT_TEMPLATE;
38 38
         }
39 39
         parent::__construct($attributesList, $template);
40 40
     }
Please login to merge, or discard this patch.
framework/ui/components/UIButton.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 
27 27
     public function __construct($attribs = [], $template = null, $show = false) {
28 28
         if (empty($template)) {
29
-            $template = __DIR__ . self::DEFAULT_TEMPLATE;
29
+            $template = __DIR__.self::DEFAULT_TEMPLATE;
30 30
         }
31 31
 
32 32
         if ($show) {
Please login to merge, or discard this patch.
framework/helpers/StringHelper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,11 +29,11 @@  discard block
 block discarded – undo
29 29
         if ($encoding) {
30 30
             $firstLetter = mb_substr(mb_strtoupper($str, $encoding), 0, 1, $encoding);
31 31
 
32
-            return ($firstLetter . mb_substr($str, 1, null, $encoding));
32
+            return ($firstLetter.mb_substr($str, 1, null, $encoding));
33 33
         } else {
34 34
             $firstLetter = mb_substr(mb_strtoupper($str), 0, 1);
35 35
 
36
-            return ($firstLetter . mb_substr($str, 1));
36
+            return ($firstLetter.mb_substr($str, 1));
37 37
         }
38 38
     }
39 39
 
@@ -52,11 +52,11 @@  discard block
 block discarded – undo
52 52
         if ($encoding) {
53 53
             $firstLetter = mb_substr(mb_strtoupper($str, $encoding), 0, 1, $encoding);
54 54
 
55
-            return ($firstLetter . mb_substr($str, 1, null, $encoding));
55
+            return ($firstLetter.mb_substr($str, 1, null, $encoding));
56 56
         } else {
57 57
             $firstLetter = mb_substr(mb_strtoupper($str), 0, 1);
58 58
 
59
-            return ($firstLetter . mb_substr($str, 1));
59
+            return ($firstLetter.mb_substr($str, 1));
60 60
         }
61 61
     }
62 62
 
Please login to merge, or discard this patch.
framework/localization/Language.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
         if (isset($this->titles[$code])) {
65 65
             return $this->titles[$code];
66 66
         } else {
67
-            throw new Exception("Invalid language code '" . $code . "'");
67
+            throw new Exception("Invalid language code '".$code."'");
68 68
         }
69 69
     }
70 70
 
Please login to merge, or discard this patch.
generators/beans_generator.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 OutputStream::start();
16 16
 
17 17
 if (!file_exists(RESULTS_PATH) || is_file(RESULTS_PATH)) {
18
-    OutputStream::msg(OutputStream::MSG_ERROR, "Destination directory '" . RESULTS_PATH . "' doesn't exists.");
18
+    OutputStream::msg(OutputStream::MSG_ERROR, "Destination directory '".RESULTS_PATH."' doesn't exists.");
19 19
     OutputStream::close();
20 20
     exit();
21 21
 }
@@ -26,9 +26,9 @@  discard block
 block discarded – undo
26 26
 if ($stmt !== false) {
27 27
     $tpl = file_get_contents(CLASS_TPL);
28 28
     while ($resultSet = DBCore::bindResults($stmt)) {
29
-        $tableName = $resultSet['TABLE_NAMES']['Tables_in_' . conf\Config::getDBConfigParam('DBNAME')];
29
+        $tableName = $resultSet['TABLE_NAMES']['Tables_in_'.conf\Config::getDBConfigParam('DBNAME')];
30 30
 
31
-        OutputStream::msg(OutputStream::MSG_INFO, "Reading structure for table '" . $tableName . "'...");
31
+        OutputStream::msg(OutputStream::MSG_INFO, "Reading structure for table '".$tableName."'...");
32 32
 
33 33
         $idFieldName = 'id';
34 34
         $fieldsListStr = "";
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
                 if ($attributes['key'] === 'PRI') {
39 39
                     $idFieldName = $field;
40 40
                 }
41
-                $fieldsListStr.= "        " . DBCore::getPrintableFieldString($field, $attributes);
41
+                $fieldsListStr .= "        ".DBCore::getPrintableFieldString($field, $attributes);
42 42
             }
43 43
             $fieldsListStr = substr($fieldsListStr, 0, strlen($fieldsListStr) - 1);
44 44
 
@@ -52,11 +52,11 @@  discard block
 block discarded – undo
52 52
                 date("Y"), AUTHOR, EMAIL
53 53
             ), $tpl);
54 54
 
55
-            file_put_contents(RESULTS_PATH . $className . ".php", $content);
55
+            file_put_contents(RESULTS_PATH.$className.".php", $content);
56 56
 
57
-            OutputStream::msg(OutputStream::MSG_SUCCESS, "Class '" . RESULTS_PATH . $className . ".php' generated.");
57
+            OutputStream::msg(OutputStream::MSG_SUCCESS, "Class '".RESULTS_PATH.$className.".php' generated.");
58 58
         } else {
59
-            OutputStream::msg(OutputStream::MSG_ERROR, "Can't read structure for table '" . $tableName . "'.");
59
+            OutputStream::msg(OutputStream::MSG_ERROR, "Can't read structure for table '".$tableName."'.");
60 60
         }
61 61
     }
62 62
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 function getClassName($tableName) {
70 70
     $underlinesReplaced = preg_replace_callback(
71 71
         "/_([a-zA-Z]{1})/",
72
-        function ($matches) {
72
+        function($matches) {
73 73
             return strtoupper($matches[1]);
74 74
         },
75 75
         $tableName
Please login to merge, or discard this patch.
modules/dbconnection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,10 +19,10 @@
 block discarded – undo
19 19
         Config::getDBConfigParam('USER'), Config::getDBConfigParam('PASSWORD'),
20 20
         Config::getDBConfigParam('DBNAME'));
21 21
 if ($mysqli->connect_error) {
22
-    die('Connect Error (' . $mysqli->connect_errno . ') ' . $mysqli->connect_error);
22
+    die('Connect Error ('.$mysqli->connect_errno.') '.$mysqli->connect_error);
23 23
 } else {
24 24
     if (!$mysqli->set_charset(Config::getDBConfigParam('DB_CHARSET'))) {
25
-        printf("Error loading character set " . Config::getDBConfigParam('DB_CHARSET') . ": %s\n", $mysqli->error);
25
+        printf("Error loading character set ".Config::getDBConfigParam('DB_CHARSET').": %s\n", $mysqli->error);
26 26
     }
27 27
 
28 28
     $manager = DBCore::getInstance();
Please login to merge, or discard this patch.