Passed
Push — Showing-Posts ( 647b41...21612a )
by Stone
01:59
created
App/Models/TagsModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 
4 4
 use Core\Model;
5 5
 
6
-class TagsModel extends Model{
6
+class TagsModel extends Model {
7 7
     public function getTags(): array
8 8
     {
9 9
         return $this->getResultSet('tags');
Please login to merge, or discard this patch.
App/Controllers/Admin/Post.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 use App\Models\TagsModel;
6 6
 use Core\AdminController;
7 7
 
8
-class Post extends AdminController{
8
+class Post extends AdminController {
9 9
 
10 10
     /**
11 11
      * page for new post
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      * Shows the post to modify and update
32 32
      * @param $idPost
33 33
      */
34
-    public function modify($idPost){
34
+    public function modify($idPost) {
35 35
         $this->onlyAdmin();
36 36
 
37 37
     }
Please login to merge, or discard this patch.