@@ -82,7 +82,10 @@ discard block |
||
| 82 | 82 | <?php if (count($minorProblems)): ?> |
| 83 | 83 | <h2>Recommendations</h2> |
| 84 | 84 | <p> |
| 85 | - <?php if (count($majorProblems)): ?>Additionally, to<?php else: ?>To<?php endif; ?> enhance your Symfony experience, |
|
| 85 | + <?php if (count($majorProblems)): ?>Additionally, to<?php else { |
|
| 86 | + : ?>To<?php endif; |
|
| 87 | +} |
|
| 88 | +?> enhance your Symfony experience, |
|
| 86 | 89 | it’s recommended that you fix the following: |
| 87 | 90 | </p> |
| 88 | 91 | <ol> |
@@ -96,9 +99,12 @@ discard block |
||
| 96 | 99 | <p id="phpini">* |
| 97 | 100 | <?php if ($symfonyRequirements->getPhpIniConfigPath()): ?> |
| 98 | 101 | Changes to the <strong>php.ini</strong> file must be done in "<strong><?php echo $symfonyRequirements->getPhpIniConfigPath() ?></strong>". |
| 99 | - <?php else: ?> |
|
| 102 | + <?php else { |
|
| 103 | + : ?> |
|
| 100 | 104 | To change settings, create a "<strong>php.ini</strong>". |
| 101 | - <?php endif; ?> |
|
| 105 | + <?php endif; |
|
| 106 | +} |
|
| 107 | +?> |
|
| 102 | 108 | </p> |
| 103 | 109 | <?php endif; ?> |
| 104 | 110 | |
@@ -216,7 +216,7 @@ |
||
| 216 | 216 | /** |
| 217 | 217 | * Get num |
| 218 | 218 | * |
| 219 | - * @return string |
|
| 219 | + * @return integer |
|
| 220 | 220 | */ |
| 221 | 221 | public function getNum() |
| 222 | 222 | { |
@@ -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 | { |
@@ -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) { |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | |
| 75 | 75 | $form->handleRequest($request); |
| 76 | 76 | |
| 77 | - if($form->isValid()) { |
|
| 77 | + if ($form->isValid()) { |
|
| 78 | 78 | // send email to admin |
| 79 | 79 | $message = \Swift_Message::newInstance() |
| 80 | 80 | ->setSubject('Message from Symfony.si') |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | $mustWatchContributors = $client->api('repo')->contributors('symfony-si', 'symfony-must-watch'); |
| 128 | 128 | $contributors = []; |
| 129 | 129 | |
| 130 | - foreach($srcContributors as $key=>$contributor) { |
|
| 130 | + foreach ($srcContributors as $key=>$contributor) { |
|
| 131 | 131 | $user = $client->api('user')->show($contributor['login']); |
| 132 | 132 | $contributors[$contributor['login']] = [ |
| 133 | 133 | 'name' => ($user['name']) ? $user['name'] : $contributor['login'], |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | ]; |
| 137 | 137 | } |
| 138 | 138 | |
| 139 | - foreach($docsContributors as $key=>$contributor) { |
|
| 139 | + foreach ($docsContributors as $key=>$contributor) { |
|
| 140 | 140 | $user = $client->api('user')->show($contributor['login']); |
| 141 | 141 | $contributors[$contributor['login']] = [ |
| 142 | 142 | 'name' => ($user['name']) ? $user['name'] : $contributor['login'], |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | ]; |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | - foreach($mustWatchContributors as $key=>$contributor) { |
|
| 148 | + foreach ($mustWatchContributors as $key=>$contributor) { |
|
| 149 | 149 | $user = $client->api('user')->show($contributor['login']); |
| 150 | 150 | $contributors[$contributor['login']] = [ |
| 151 | 151 | 'name' => ($user['name']) ? $user['name'] : $contributor['login'], |
@@ -2,18 +2,18 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace AppBundle\Controller; |
| 4 | 4 | |
| 5 | +use AppBundle\Entity\Contact; |
|
| 6 | +use AppBundle\Entity\Project; |
|
| 7 | +use Sensio\Bundle\FrameworkExtraBundle\Configuration\Cache; |
|
| 5 | 8 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; |
| 6 | 9 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; |
| 7 | 10 | use Symfony\Component\Form\Extension\Core\Type\EmailType; |
| 8 | 11 | use Symfony\Component\Form\Extension\Core\Type\SubmitType; |
| 9 | -use Symfony\Component\Form\Extension\Core\Type\TextareaType; |
|
| 10 | 12 | use Symfony\Component\Form\Extension\Core\Type\TextType; |
| 13 | +use Symfony\Component\Form\Extension\Core\Type\TextareaType; |
|
| 11 | 14 | use Symfony\Component\HttpFoundation\RedirectResponse; |
| 12 | 15 | use Symfony\Component\HttpFoundation\Request; |
| 13 | -use AppBundle\Entity\Contact; |
|
| 14 | -use Sensio\Bundle\FrameworkExtraBundle\Configuration\Cache; |
|
| 15 | 16 | use Symfony\Component\HttpFoundation\Response; |
| 16 | -use AppBundle\Entity\Project; |
|
| 17 | 17 | |
| 18 | 18 | class DefaultController extends Controller |
| 19 | 19 | { |