Completed
Push — master ( 5432fb...a44a55 )
by Peter
22:26
created
web/config.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -82,7 +82,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/AppBundle/Controller/DefaultController.php 1 patch
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,19 +2,19 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
src/AppBundle/Repository/PostRepository.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
src/AppBundle/Repository/PsrRepository.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.