@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | |
| 51 | 51 | $form->handleRequest($request); |
| 52 | 52 | |
| 53 | - if($form->isValid()) { |
|
| 53 | + if ($form->isValid()) { |
|
| 54 | 54 | // send email to admin |
| 55 | 55 | |
| 56 | 56 | $message = \Swift_Message::newInstance() |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | $docsContributors = $client->api('repo')->contributors('symfony-si', 'symfony-docs-sl'); |
| 94 | 94 | $contributors = array(); |
| 95 | 95 | |
| 96 | - foreach($srcContributors as $key=>$contributor) { |
|
| 96 | + foreach ($srcContributors as $key=>$contributor) { |
|
| 97 | 97 | $user = $client->api('user')->show($contributor['login']); |
| 98 | 98 | $contributors[$contributor['login']] = array( |
| 99 | 99 | 'name' => ($user['name']) ? $user['name'] : $contributor['login'], |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | ); |
| 103 | 103 | } |
| 104 | 104 | |
| 105 | - foreach($docsContributors as $key=>$contributor) { |
|
| 105 | + foreach ($docsContributors as $key=>$contributor) { |
|
| 106 | 106 | $user = $client->api('user')->show($contributor['login']); |
| 107 | 107 | $contributors[$contributor['login']] = array( |
| 108 | 108 | 'name' => ($user['name']) ? $user['name'] : $contributor['login'], |
@@ -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) { |