Passed
Branch v1.5.1 (4f5540)
by Wanderson
05:07
created
www/vendor/Win/Repositories/Database/Sql/Builders/Update.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 	/** @return string */
20 20
 	protected function set()
21 21
 	{
22
-		return implode(', ', array_map(function ($column) {
22
+		return implode(', ', array_map(function($column) {
23 23
 			return $column . ' = ?';
24 24
 		}, array_keys($this->query->values)));
25 25
 	}
Please login to merge, or discard this patch.
www/app/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 /**
4 4
  * Autoload App
5 5
  */
6
-spl_autoload_register(function ($className) {
6
+spl_autoload_register(function($className) {
7 7
 	$className = str_replace('App\\', 'app\\', $className);
8 8
 	$file = BASE_PATH . '/' . str_replace('\\', DIRECTORY_SEPARATOR, $className) . '.php';
9 9
 	if (file_exists($file)) {
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 /**
15 15
  * Autoload Vendor
16 16
  */
17
-spl_autoload_register(function ($className) {
17
+spl_autoload_register(function($className) {
18 18
 	$file = BASE_PATH . '/vendor/' . str_replace('\\', DIRECTORY_SEPARATOR, $className) . '.php';
19 19
 	if (file_exists($file)) {
20 20
 		return require $file;
Please login to merge, or discard this patch.
www/vendor/Win/Repositories/Database/Orm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
 	 */
125 125
 	public function destroy($id)
126 126
 	{
127
-		$query = $this->query->build(Builder::DELETE);;
127
+		$query = $this->query->build(Builder::DELETE); ;
128 128
 		$this->filterBy(static::PK, $id);
129 129
 
130 130
 		$this->conn->query($query, $query->getValues());
Please login to merge, or discard this patch.