@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | $finder = new Finder(); |
| 24 | 24 | $finder->files()->in($this->path.'/Resources/content/blog'); |
| 25 | 25 | $finder->files()->name('*.md'); |
| 26 | - $finder->sort(function ($a, $b) { return strcmp($b->getRealpath(), $a->getRealpath()); }); |
|
| 26 | + $finder->sort(function($a, $b) { return strcmp($b->getRealpath(), $a->getRealpath()); }); |
|
| 27 | 27 | |
| 28 | 28 | $posts = []; |
| 29 | 29 | foreach ($finder as $file) { |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | $finder = new Finder(); |
| 69 | 69 | $finder->files()->in($this->path.'/Resources/content/blog'); |
| 70 | 70 | $finder->files()->name('*.md'); |
| 71 | - $finder->sort(function ($a, $b) { return strcmp($b->getRealpath(), $a->getRealpath()); }); |
|
| 71 | + $finder->sort(function($a, $b) { return strcmp($b->getRealpath(), $a->getRealpath()); }); |
|
| 72 | 72 | |
| 73 | 73 | $posts = []; |
| 74 | 74 | foreach (new \LimitIterator($finder->getIterator(), 0, $limit) as $file) { |
@@ -73,7 +73,7 @@ |
||
| 73 | 73 | |
| 74 | 74 | $form->handleRequest($request); |
| 75 | 75 | |
| 76 | - if($form->isSubmitted() && $form->isValid()) { |
|
| 76 | + if ($form->isSubmitted() && $form->isValid()) { |
|
| 77 | 77 | // send email to admin |
| 78 | 78 | $message = \Swift_Message::newInstance() |
| 79 | 79 | ->setSubject('Message from Symfony.si') |