Passed
Push — master ( 1c6317...ea0da1 )
by refat
06:16 queued 02:27
created
App/Middleware/Admin/AuthenticateMiddleware.php 3 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -7,28 +7,28 @@
 block discarded – undo
7 7
 
8 8
 class AuthenticateMiddleware implements Middleware
9 9
 {
10
-  public function handle(Application $app, $next)
11
-  {
10
+    public function handle(Application $app, $next)
11
+    {
12 12
     $request = $app->request->url();
13 13
 
14 14
     $login = $app->load->model('Login');
15 15
 
16 16
     $pagesWhenLogout = [
17
-      '/login',
18
-      '/login/submit',
19
-      '/registration',
20
-      '/registration/submit'
17
+        '/login',
18
+        '/login/submit',
19
+        '/registration',
20
+        '/registration/submit'
21 21
     ];
22 22
 
23 23
     if ($login->isLogged()) {
24 24
 
25
-      if (in_array($request, $pagesWhenLogout)) $app->url->redirectTo('/');
25
+        if (in_array($request, $pagesWhenLogout)) $app->url->redirectTo('/');
26 26
 
27 27
     } else {
28 28
 
29
-      if (! in_array($request, $pagesWhenLogout)) $app->url->redirectTo('/');
29
+        if (! in_array($request, $pagesWhenLogout)) $app->url->redirectTo('/');
30 30
     }
31 31
 
32 32
     return $next;
33
-  }
33
+    }
34 34
 }
35 35
\ No newline at end of file
Please login to merge, or discard this 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
     } else {
28 28
 
29
-      if (! in_array($request, $pagesWhenLogout)) $app->url->redirectTo('/');
29
+      if (!in_array($request, $pagesWhenLogout)) $app->url->redirectTo('/');
30 30
     }
31 31
 
32 32
     return $next;
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,11 +22,15 @@
 block discarded – undo
22 22
 
23 23
     if ($login->isLogged()) {
24 24
 
25
-      if (in_array($request, $pagesWhenLogout)) $app->url->redirectTo('/');
25
+      if (in_array($request, $pagesWhenLogout)) {
26
+          $app->url->redirectTo('/');
27
+      }
26 28
 
27 29
     } else {
28 30
 
29
-      if (! in_array($request, $pagesWhenLogout)) $app->url->redirectTo('/');
31
+      if (! in_array($request, $pagesWhenLogout)) {
32
+          $app->url->redirectTo('/');
33
+      }
30 34
     }
31 35
 
32 36
     return $next;
Please login to merge, or discard this patch.
App/Middleware/Admin/PermissionsMiddleware.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
 
8 8
 class PermissionsMiddleware implements Middleware
9 9
 {
10
-  public function handle(Application $app, $next)
11
-  {
10
+    public function handle(Application $app, $next)
11
+    {
12 12
 
13
-  }
13
+    }
14 14
 }
15 15
\ No newline at end of file
Please login to merge, or discard this patch.
App/Middleware/Admin/RedirectMiddleware.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@
 block discarded – undo
10 10
     public function handle(Application $app, $next)
11 11
     {
12 12
 
13
-       if (! $this->session->has('error') || $this->session->get('error') != true) {
13
+        if (! $this->session->has('error') || $this->session->get('error') != true) {
14 14
 
15 15
             $this->url->redirectTo('/');
16 16
 
17
-       } else {
17
+        } else {
18 18
 
19
-           $this->session->remove('error');
20
-       }
19
+            $this->session->remove('error');
20
+        }
21 21
     }
22 22
 }
23 23
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     public function handle(Application $app, $next)
11 11
     {
12 12
 
13
-       if (! $this->session->has('error') || $this->session->get('error') != true) {
13
+       if (!$this->session->has('error') || $this->session->get('error') != true) {
14 14
 
15 15
             $this->url->redirectTo('/');
16 16
 
Please login to merge, or discard this patch.
App/Middleware/Admin/AjaxMiddleware.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
 
8 8
 class AjaxMiddleware implements Middleware
9 9
 {
10
-  public function handle(Application $app, $next)
11
-  {
10
+    public function handle(Application $app, $next)
11
+    {
12 12
     // if(empty($_SERVER['HTTP_X_REQUESTED_WITH'])) $this->url->redirectTo('error');
13
-  }
13
+    }
14 14
 }
15 15
\ No newline at end of file
Please login to merge, or discard this patch.
Core/System/Session.php 2 patches
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -4,60 +4,60 @@
 block discarded – undo
4 4
 
5 5
 class Session
6 6
 {
7
-  private $app;
7
+    private $app;
8 8
 
9
-  public function __construct(Application $app)
10
-  {
9
+    public function __construct(Application $app)
10
+    {
11 11
     $this->app = $app;
12
-  }
12
+    }
13 13
 
14
-  public function start()
15
-  {
14
+    public function start()
15
+    {
16 16
     ini_set('session.use_only_cookies', 1);
17 17
 
18 18
     if (! session_id()) {
19
-      session_start();
19
+        session_start();
20
+    }
20 21
     }
21
-  }
22 22
 
23
-  public function set($key, $value)
24
-  {
25
-      $_SESSION[$key] = $value;
23
+    public function set($key, $value)
24
+    {
25
+        $_SESSION[$key] = $value;
26 26
 }
27 27
 
28
-  public function get($key, $default = null)
29
-  {
28
+    public function get($key, $default = null)
29
+    {
30 30
     return array_get($_SESSION, $key, $default);
31
-  }
31
+    }
32 32
 
33
-  public function pull($key)
34
-  {
33
+    public function pull($key)
34
+    {
35 35
     $value = $this->get($key);
36 36
 
37 37
     $this->remove($key);
38 38
 
39 39
     return $value;
40
-  }
40
+    }
41 41
 
42
-  public function has($key)
43
-  {
42
+    public function has($key)
43
+    {
44 44
     return isset($_SESSION[$key]);
45
-  }
45
+    }
46 46
 
47
-  public function all()
48
-  {
47
+    public function all()
48
+    {
49 49
     return $_SESSION;
50
-  }
50
+    }
51 51
 
52
-  public function remove($key)
53
-  {
52
+    public function remove($key)
53
+    {
54 54
     unset($_SESSION[$key]);
55
-  }
55
+    }
56 56
 
57
-  public function destroy()
58
-  {
59
-      session_destroy();
57
+    public function destroy()
58
+    {
59
+        session_destroy();
60 60
 
61 61
     unset($_SESSION);
62
-  }
62
+    }
63 63
 }
64 64
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
   {
16 16
     ini_set('session.use_only_cookies', 1);
17 17
 
18
-    if (! session_id()) {
18
+    if (!session_id()) {
19 19
       session_start();
20 20
     }
21 21
   }
Please login to merge, or discard this patch.
Core/System/Cookie.php 2 patches
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -4,53 +4,53 @@
 block discarded – undo
4 4
 
5 5
 class Cookie
6 6
 {
7
-  private $app;
7
+    private $app;
8 8
 
9
-  private $path;
9
+    private $path;
10 10
 
11
-  public function __construct(Application $app)
12
-  {
11
+    public function __construct(Application $app)
12
+    {
13 13
     $this->app = $app;
14 14
 
15 15
     $this->path = dirname($this->app->request->server('SCRIPT_NAME')) ?: '/';
16
-  }
16
+    }
17 17
 
18
-  public function set($key, $value, $hours = 1800)
19
-  {
18
+    public function set($key, $value, $hours = 1800)
19
+    {
20 20
     $expireTime = $hours == -1 ? -1 : time() + $hours * 3600;
21 21
 
22 22
     setcookie($key, $value, $expireTime, $this->path, '', false, true);
23
-  }
23
+    }
24 24
 
25
-  public function get($key , $default = null)
26
-  {
25
+    public function get($key , $default = null)
26
+    {
27 27
     return array_get($_COOKIE, $key, $default);
28
-  }
28
+    }
29 29
 
30
-  public function has($key)
31
-  {
30
+    public function has($key)
31
+    {
32 32
     return array_key_exists($key, $_COOKIE);
33
-  }
33
+    }
34 34
 
35
-  public function remove($key)
36
-  {
35
+    public function remove($key)
36
+    {
37 37
     $this->set($key, null, -1);
38 38
 
39 39
     unset($_COOKIE[$key]);
40
-  }
40
+    }
41 41
 
42
-  public function all()
43
-  {
42
+    public function all()
43
+    {
44 44
     return $_COOKIE;
45
-  }
45
+    }
46 46
 
47
-  public function destroy()
48
-  {
47
+    public function destroy()
48
+    {
49 49
     foreach (array_keys($this->all()) AS $key) {
50 50
 
51
-      $this->remove($key);
51
+        $this->remove($key);
52 52
     }
53 53
 
54 54
     unset($_COOKIE);
55
-  }
55
+    }
56 56
 }
57 57
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     setcookie($key, $value, $expireTime, $this->path, '', false, true);
23 23
   }
24 24
 
25
-  public function get($key , $default = null)
25
+  public function get($key, $default = null)
26 26
   {
27 27
     return array_get($_COOKIE, $key, $default);
28 28
   }
Please login to merge, or discard this patch.
Core/System/Model.php 3 patches
Indentation   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -4,62 +4,62 @@  discard block
 block discarded – undo
4 4
 
5 5
 abstract class Model
6 6
 {
7
-  protected $app;
7
+    protected $app;
8 8
 
9
-  protected $table;
9
+    protected $table;
10 10
 
11
-  public function __construct(Application $app)
12
-  {
11
+    public function __construct(Application $app)
12
+    {
13 13
     $this->app = $app;
14
-  }
14
+    }
15 15
 
16
-  public function __get($key)
17
-  {
16
+    public function __get($key)
17
+    {
18 18
     return $this->app->get($key);
19
-  }
19
+    }
20 20
 
21
-  public function __call($method, $args)
22
-  {
21
+    public function __call($method, $args)
22
+    {
23 23
     return call_user_func_array([$this->app->db, $method], $args);
24
-  }
24
+    }
25 25
 
26
-  public function all($limit = null)
27
-  {
26
+    public function all($limit = null)
27
+    {
28 28
     return $this->orderBy('id', 'DESC')->limit($limit)->fetchAll($this->table);
29
-  }
29
+    }
30 30
 
31
-  public function allEnable($limit = null)
32
-  {
31
+    public function allEnable($limit = null)
32
+    {
33 33
     return $this->orderBy('id', 'DESC')->where('enable = ?', 1)->limit($limit)->fetchAll($this->table);
34
-  }
34
+    }
35 35
 
36
-  public function get($value, $coulmn = 'id')
37
-  {
36
+    public function get($value, $coulmn = 'id')
37
+    {
38 38
     return $this->where($coulmn . ' = ?' , $value)->fetch($this->table);
39
-  }
39
+    }
40 40
 
41
-  public function getEnable($value, $coulmn = 'id')
42
-  {
41
+    public function getEnable($value, $coulmn = 'id')
42
+    {
43 43
     return $this->where($coulmn . ' = ? AND enable = ?' , [$value, 1])->fetch($this->table);
44
-  }
44
+    }
45 45
 
46
-  public function selectTable($coulmn)
47
-  {
46
+    public function selectTable($coulmn)
47
+    {
48 48
     return $this->select($coulmn)->fetchAll($this->table);
49
-  }
49
+    }
50 50
 
51
-  public function exists($value, $key = 'id')
52
-  {
51
+    public function exists($value, $key = 'id')
52
+    {
53 53
     return (bool) $this->select($key)->where($key .'=?' , $value)->fetch($this->table);
54
-  }
54
+    }
55 55
 
56
-  public function delete($id)
57
-  {
56
+    public function delete($id)
57
+    {
58 58
     return $this->where('id = ?' , $id)->delete($this->table);
59
-  }
59
+    }
60 60
 
61
-  public function hasOne($join, $id = null, $select = '*', $limit = null, $localId = null, $forginId = null)
62
-  {
61
+    public function hasOne($join, $id = null, $select = '*', $limit = null, $localId = null, $forginId = null)
62
+    {
63 63
     $join = rtrim($join, 'Model');
64 64
 
65 65
     $file = $this->app->file->to( 'App/Models/' . $join . 'Model', '.php');
@@ -75,10 +75,10 @@  discard block
 block discarded – undo
75 75
     $join = $this->load->model($join)->table;
76 76
 
77 77
     return $this->db->select($select)->from($table)->join($join, $localId, $forginId)->where($table . '.id = ?', $id)->limit($limit)->fetch();
78
-  }
78
+    }
79 79
 
80
-  public function hasMany($join, $id = null, $select = '*', $limit = null, $localId = null, $forginId = null)
81
-  {
80
+    public function hasMany($join, $id = null, $select = '*', $limit = null, $localId = null, $forginId = null)
81
+    {
82 82
     $join = rtrim($join, 'Model');
83 83
 
84 84
     $file = $this->app->file->to( 'App/Models/' . $join . 'Model', '.php');
@@ -94,10 +94,10 @@  discard block
 block discarded – undo
94 94
     $join = $this->load->model($join)->table;
95 95
 
96 96
     return $this->db->select($select)->from($table)->join($join, $localId, $forginId)->where($table . '.id = ?', $id)->limit($limit)->fetchAll();
97
-  }
97
+    }
98 98
 
99
-  public function join($join, $limit = null, $enable = null, $localId = null, $forginId = null)
100
-  {
99
+    public function join($join, $limit = null, $enable = null, $localId = null, $forginId = null)
100
+    {
101 101
     $join = rtrim($join, 'Model');
102 102
 
103 103
     $file = $this->app->file->to( 'App/Models/' . $join . 'Model', '.php');
@@ -118,5 +118,5 @@  discard block
 block discarded – undo
118 118
     }
119 119
 
120 120
     return $this->db->select()->from($table)->join($join, $localId, $forginId)->limit($limit)->fetchAll();
121
-  }
121
+    }
122 122
 }
123 123
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -35,12 +35,12 @@  discard block
 block discarded – undo
35 35
 
36 36
   public function get($value, $coulmn = 'id')
37 37
   {
38
-    return $this->where($coulmn . ' = ?' , $value)->fetch($this->table);
38
+    return $this->where($coulmn . ' = ?', $value)->fetch($this->table);
39 39
   }
40 40
 
41 41
   public function getEnable($value, $coulmn = 'id')
42 42
   {
43
-    return $this->where($coulmn . ' = ? AND enable = ?' , [$value, 1])->fetch($this->table);
43
+    return $this->where($coulmn . ' = ? AND enable = ?', [$value, 1])->fetch($this->table);
44 44
   }
45 45
 
46 46
   public function selectTable($coulmn)
@@ -50,23 +50,23 @@  discard block
 block discarded – undo
50 50
 
51 51
   public function exists($value, $key = 'id')
52 52
   {
53
-    return (bool) $this->select($key)->where($key .'=?' , $value)->fetch($this->table);
53
+    return (bool) $this->select($key)->where($key . '=?', $value)->fetch($this->table);
54 54
   }
55 55
 
56 56
   public function delete($id)
57 57
   {
58
-    return $this->where('id = ?' , $id)->delete($this->table);
58
+    return $this->where('id = ?', $id)->delete($this->table);
59 59
   }
60 60
 
61 61
   public function hasOne($join, $id = null, $select = '*', $limit = null, $localId = null, $forginId = null)
62 62
   {
63 63
     $join = rtrim($join, 'Model');
64 64
 
65
-    $file = $this->app->file->to( 'App/Models/' . $join . 'Model', '.php');
65
+    $file = $this->app->file->to('App/Models/' . $join . 'Model', '.php');
66 66
 
67 67
     $exists = $this->app->file->exists($file);
68 68
 
69
-    if (! $exists) return $join . ' Not Found';
69
+    if (!$exists) return $join . ' Not Found';
70 70
 
71 71
     $trace = debug_backtrace();
72 72
 
@@ -81,11 +81,11 @@  discard block
 block discarded – undo
81 81
   {
82 82
     $join = rtrim($join, 'Model');
83 83
 
84
-    $file = $this->app->file->to( 'App/Models/' . $join . 'Model', '.php');
84
+    $file = $this->app->file->to('App/Models/' . $join . 'Model', '.php');
85 85
 
86 86
     $exists = $this->app->file->exists($file);
87 87
 
88
-    if (! $exists) return $join . ' Not Found';
88
+    if (!$exists) return $join . ' Not Found';
89 89
 
90 90
     $trace = debug_backtrace();
91 91
 
@@ -100,11 +100,11 @@  discard block
 block discarded – undo
100 100
   {
101 101
     $join = rtrim($join, 'Model');
102 102
 
103
-    $file = $this->app->file->to( 'App/Models/' . $join . 'Model', '.php');
103
+    $file = $this->app->file->to('App/Models/' . $join . 'Model', '.php');
104 104
 
105 105
     $exists = $this->app->file->exists($file);
106 106
 
107
-    if (! $exists) return $join . ' Not Found';
107
+    if (!$exists) return $join . ' Not Found';
108 108
 
109 109
     $trace = debug_backtrace();
110 110
 
Please login to merge, or discard this patch.
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,7 +66,9 @@  discard block
 block discarded – undo
66 66
 
67 67
     $exists = $this->app->file->exists($file);
68 68
 
69
-    if (! $exists) return $join . ' Not Found';
69
+    if (! $exists) {
70
+        return $join . ' Not Found';
71
+    }
70 72
 
71 73
     $trace = debug_backtrace();
72 74
 
@@ -85,7 +87,9 @@  discard block
 block discarded – undo
85 87
 
86 88
     $exists = $this->app->file->exists($file);
87 89
 
88
-    if (! $exists) return $join . ' Not Found';
90
+    if (! $exists) {
91
+        return $join . ' Not Found';
92
+    }
89 93
 
90 94
     $trace = debug_backtrace();
91 95
 
@@ -104,7 +108,9 @@  discard block
 block discarded – undo
104 108
 
105 109
     $exists = $this->app->file->exists($file);
106 110
 
107
-    if (! $exists) return $join . ' Not Found';
111
+    if (! $exists) {
112
+        return $join . ' Not Found';
113
+    }
108 114
 
109 115
     $trace = debug_backtrace();
110 116
 
Please login to merge, or discard this patch.
Core/System/File.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -6,59 +6,59 @@
 block discarded – undo
6 6
 
7 7
 class File
8 8
 {
9
-  const DS = DIRECTORY_SEPARATOR;
9
+    const DS = DIRECTORY_SEPARATOR;
10 10
 
11
-  private $root;
11
+    private $root;
12 12
 
13
-  public function __construct($root)
14
-  {
13
+    public function __construct($root)
14
+    {
15 15
     $this->root = $root;
16
-  }
16
+    }
17 17
 
18
-  public function root()
19
-  {
18
+    public function root()
19
+    {
20 20
     return $this->root;
21
-  }
21
+    }
22 22
 
23
-  public function exists($file)
24
-  {
25
-      return file_exists($file);
26
-  }
23
+    public function exists($file)
24
+    {
25
+        return file_exists($file);
26
+    }
27 27
 
28
-  public function call($file)
29
-  {
28
+    public function call($file)
29
+    {
30 30
     if ($this->exists($file)) {
31 31
 
32
-      return require $file;
32
+        return require $file;
33 33
 
34 34
     } else {
35 35
 
36
-      throw new Exception("$file is not found");
36
+        throw new Exception("$file is not found");
37
+    }
37 38
     }
38
-  }
39 39
 
40
-  public function to($path, $ext = null)
41
-  {
40
+    public function to($path, $ext = null)
41
+    {
42 42
     return $this->root . static::DS . str_replace('/', static::DS, $path . $ext);
43
-  }
43
+    }
44 44
 
45
-  public function toPublic($target = null)
46
-  {
45
+    public function toPublic($target = null)
46
+    {
47 47
     return $this->to('public/' . $target);
48
-  }
48
+    }
49 49
 
50
-  public function images()
51
-  {
50
+    public function images()
51
+    {
52 52
     return $this->toPublic('images');
53
-  }
53
+    }
54 54
 
55
-  public function js()
56
-  {
55
+    public function js()
56
+    {
57 57
     return $this->toPublic('js');
58
-  }
58
+    }
59 59
 
60
-  public function css()
61
-  {
60
+    public function css()
61
+    {
62 62
     return $this->toPublic('css');
63
-  }
63
+    }
64 64
 }
65 65
\ No newline at end of file
Please login to merge, or discard this patch.
Core/System/Loader.php 2 patches
Indentation   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -6,56 +6,56 @@  discard block
 block discarded – undo
6 6
 
7 7
 class Loader
8 8
 {
9
-  private $app;
9
+    private $app;
10 10
 
11
-  private $controllers = [];
11
+    private $controllers = [];
12 12
 
13
-  private $models = [];
13
+    private $models = [];
14 14
 
15
-  private $middlewares = [];
15
+    private $middlewares = [];
16 16
 
17
-  public function __construct(Application $app)
18
-  {
17
+    public function __construct(Application $app)
18
+    {
19 19
     $this->app = $app;
20
-  }
20
+    }
21 21
 
22
-  public function action($controller, $method, array $arguments)
23
-  {
22
+    public function action($controller, $method, array $arguments)
23
+    {
24 24
     $object = $this->controller($controller);
25 25
 
26 26
     return call_user_func([$object, $method], $arguments);
27
-  }
27
+    }
28 28
 
29
-  public function controller($controller)
30
-  {
29
+    public function controller($controller)
30
+    {
31 31
     $controller = $this->getControllerName($controller);
32 32
 
33 33
     if (! $this->hasController($controller)) {
34
-      $this->addController($controller);
34
+        $this->addController($controller);
35 35
     }
36 36
 
37 37
     return $this->getController($controller);
38
-  }
38
+    }
39 39
 
40
-  private function hasController($controller)
41
-  {
40
+    private function hasController($controller)
41
+    {
42 42
     return array_key_exists($controller, $this->controllers);
43
-  }
43
+    }
44 44
 
45
-  private function addController($controller)
46
-  {
45
+    private function addController($controller)
46
+    {
47 47
     $object = new $controller($this->app);
48 48
 
49 49
     $this->controllers[$controller] = $object;
50
-  }
50
+    }
51 51
 
52
-  private function getController($controller)
53
-  {
52
+    private function getController($controller)
53
+    {
54 54
     return $this->controllers[$controller];
55
-  }
55
+    }
56 56
 
57
-  private function getControllerName($controller)
58
-  {
57
+    private function getControllerName($controller)
58
+    {
59 59
     $controller .= strpos($controller, 'Controller') ? '' : 'Controller';
60 60
 
61 61
     $controller = str_replace('/', DS, $controller);
@@ -63,38 +63,38 @@  discard block
 block discarded – undo
63 63
     $controller = 'App' . DS .'Controllers' . DS . $controller;
64 64
 
65 65
     return $controller;
66
-  }
66
+    }
67 67
 
68
-  public function model($model)
69
-  {
68
+    public function model($model)
69
+    {
70 70
     $model = $this->getModelName($model);
71 71
 
72 72
     if (! $this->hasModel($model)) {
73
-      $this->addModel($model);
73
+        $this->addModel($model);
74 74
     }
75 75
 
76 76
     return $this->getModel($model);
77
-  }
77
+    }
78 78
 
79
-  private function hasModel($model)
80
-  {
79
+    private function hasModel($model)
80
+    {
81 81
     return array_key_exists($model, $this->models);
82
-  }
82
+    }
83 83
 
84
-  private function addModel($model)
85
-  {
84
+    private function addModel($model)
85
+    {
86 86
     $object = new $model($this->app);
87 87
 
88 88
     $this->models[$model] = $object;
89
-  }
89
+    }
90 90
 
91
-  private function getModel($model)
92
-  {
91
+    private function getModel($model)
92
+    {
93 93
     return $this->models[$model];
94
-  }
94
+    }
95 95
 
96
-  private function getModelName($model)
97
-  {
96
+    private function getModelName($model)
97
+    {
98 98
     $model .= strpos($model, 'Model') ? '' : 'Model';
99 99
 
100 100
     $model = str_replace('/', DS, $model);
@@ -102,5 +102,5 @@  discard block
 block discarded – undo
102 102
     $model = 'App' . DS . 'Models' . DS . $model;
103 103
 
104 104
     return $model;
105
-  }
105
+    }
106 106
 }
107 107
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
   {
31 31
     $controller = $this->getControllerName($controller);
32 32
 
33
-    if (! $this->hasController($controller)) {
33
+    if (!$this->hasController($controller)) {
34 34
       $this->addController($controller);
35 35
     }
36 36
 
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 
61 61
     $controller = str_replace('/', DS, $controller);
62 62
 
63
-    $controller = 'App' . DS .'Controllers' . DS . $controller;
63
+    $controller = 'App' . DS . 'Controllers' . DS . $controller;
64 64
 
65 65
     return $controller;
66 66
   }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
   {
70 70
     $model = $this->getModelName($model);
71 71
 
72
-    if (! $this->hasModel($model)) {
72
+    if (!$this->hasModel($model)) {
73 73
       $this->addModel($model);
74 74
     }
75 75
 
Please login to merge, or discard this patch.