@@ -26,7 +26,7 @@ |
||
26 | 26 | throw new \Exception("Pagination Error", "404"); |
27 | 27 | } |
28 | 28 | $pageNo = $this->removeFromBeginning($page, "page-"); |
29 | - if(!filter_var($pageNo, FILTER_VALIDATE_INT)){ |
|
29 | + if (!filter_var($pageNo, FILTER_VALIDATE_INT)) { |
|
30 | 30 | throw new \Exception("Invalid page number"); |
31 | 31 | } |
32 | 32 | $offset = ($pageNo - 1) * $rowsPerPage; |
@@ -42,12 +42,12 @@ discard block |
||
42 | 42 | private function getFilename(string $folder, string $file):string |
43 | 43 | { |
44 | 44 | |
45 | - $fileUrl = $folder . $file; |
|
45 | + $fileUrl = $folder.$file; |
|
46 | 46 | $filePath = $_SERVER['DOCUMENT_ROOT']."/public/".$fileUrl; |
47 | - if(file_exists($filePath) !== 1) |
|
47 | + if (file_exists($filePath) !== 1) |
|
48 | 48 | { |
49 | 49 | $fileNum = 0; |
50 | - while(file_exists($filePath)) |
|
50 | + while (file_exists($filePath)) |
|
51 | 51 | { |
52 | 52 | $fileUrl = $folder.$fileNum."_".$file; |
53 | 53 | $filePath = $_SERVER['DOCUMENT_ROOT']."/public/".$fileUrl; |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | |
76 | 76 | // Respond to the successful upload with JSON. |
77 | 77 | echo json_encode(array('location' => $filetowrite)); |
78 | - } else { |
|
78 | + }else { |
|
79 | 79 | // Notify editor that the upload failed |
80 | 80 | echo json_encode(array('error' => 'Upload failed')); |
81 | 81 | } |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | |
110 | 110 | // Respond to the successful upload with JSON. |
111 | 111 | echo json_encode(array('location' => $filetowrite)); |
112 | - } else { |
|
112 | + }else { |
|
113 | 113 | // Notify editor that the upload failed |
114 | 114 | header("HTTP/1.1 500 Server Error"); |
115 | 115 | } |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | //Searching for the page break tag |
86 | 86 | $breakTagPosition = strpos($text, "<!-- EndOfExcerptBlogOc -->"); |
87 | - if($breakTagPosition > 0){ |
|
87 | + if ($breakTagPosition > 0) { |
|
88 | 88 | return $this->completeDom(substr($text, 0, $breakTagPosition)); |
89 | 89 | } |
90 | 90 | |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | $trimed .= $string[$wordCounter]; |
99 | 99 | if ($wordCounter < $count - 1) { |
100 | 100 | $trimed .= " "; |
101 | - } else { |
|
101 | + }else { |
|
102 | 102 | $trimed .= "[...]"; |
103 | 103 | } |
104 | 104 | } |
@@ -7,7 +7,7 @@ |
||
7 | 7 | use Core\Controller; |
8 | 8 | use Core\Container; |
9 | 9 | |
10 | -class Author extends Controller{ |
|
10 | +class Author extends Controller { |
|
11 | 11 | |
12 | 12 | |
13 | 13 | protected $siteConfig; |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | use Core\Controller; |
9 | 9 | use Core\Container; |
10 | 10 | |
11 | -class Post extends Controller{ |
|
11 | +class Post extends Controller { |
|
12 | 12 | |
13 | 13 | protected $siteConfig; |
14 | 14 | |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * @throws \Twig_Error_Runtime |
27 | 27 | * @throws \Twig_Error_Syntax |
28 | 28 | */ |
29 | - public function viewPost(string $slug){ |
|
29 | + public function viewPost(string $slug) { |
|
30 | 30 | |
31 | 31 | $tagModel = new TagsModel($this->container); |
32 | 32 | $postModel = new PostModel($this->container); |
@@ -6,7 +6,7 @@ |
||
6 | 6 | use Core\Controller; |
7 | 7 | use Core\Container; |
8 | 8 | |
9 | -class Tag extends Controller{ |
|
9 | +class Tag extends Controller { |
|
10 | 10 | |
11 | 11 | protected $siteConfig; |
12 | 12 | protected $pagination; |