@@ -2,19 +2,19 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace AppBundle\Controller; |
| 4 | 4 | |
| 5 | +use AppBundle\Entity\Contact; |
|
| 6 | +use AppBundle\Entity\Project; |
|
| 7 | +use Mni\FrontYAML\Parser; |
|
| 8 | +use Sensio\Bundle\FrameworkExtraBundle\Configuration\Cache; |
|
| 5 | 9 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; |
| 6 | 10 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; |
| 7 | 11 | use Symfony\Component\Form\Extension\Core\Type\EmailType; |
| 8 | 12 | use Symfony\Component\Form\Extension\Core\Type\SubmitType; |
| 9 | -use Symfony\Component\Form\Extension\Core\Type\TextareaType; |
|
| 10 | 13 | use Symfony\Component\Form\Extension\Core\Type\TextType; |
| 14 | +use Symfony\Component\Form\Extension\Core\Type\TextareaType; |
|
| 11 | 15 | use Symfony\Component\HttpFoundation\RedirectResponse; |
| 12 | 16 | use Symfony\Component\HttpFoundation\Request; |
| 13 | -use AppBundle\Entity\Contact; |
|
| 14 | -use Sensio\Bundle\FrameworkExtraBundle\Configuration\Cache; |
|
| 15 | 17 | use Symfony\Component\HttpFoundation\Response; |
| 16 | -use Mni\FrontYAML\Parser; |
|
| 17 | -use AppBundle\Entity\Project; |
|
| 18 | 18 | |
| 19 | 19 | class DefaultController extends Controller |
| 20 | 20 | { |
@@ -2,9 +2,9 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace AppBundle\Repository; |
| 4 | 4 | |
| 5 | -use Symfony\Component\Finder\Finder; |
|
| 6 | 5 | use AppBundle\Entity\Post; |
| 7 | 6 | use Mni\FrontYAML\Parser; |
| 7 | +use Symfony\Component\Finder\Finder; |
|
| 8 | 8 | |
| 9 | 9 | class PostRepository |
| 10 | 10 | { |
@@ -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) { |
@@ -2,9 +2,9 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace AppBundle\Repository; |
| 4 | 4 | |
| 5 | -use Symfony\Component\Finder\Finder; |
|
| 6 | 5 | use AppBundle\Entity\Psr; |
| 7 | 6 | use Mni\FrontYAML\Parser; |
| 7 | +use Symfony\Component\Finder\Finder; |
|
| 8 | 8 | |
| 9 | 9 | class PsrRepository |
| 10 | 10 | { |