Completed
Branch master (80a801)
by Peter
16:50
created
src/SymfonySi/MainBundle/Controller/DefaultController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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'],
Please login to merge, or discard this patch.
src/SymfonySi/DocsBundle/Controller/DefaultController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
     {
11 11
         $file = $this->get('kernel')->getRootDir().'/../web/doc/current/index.html';
12 12
 
13
-        if(file_exists($file) && substr($file, -5) == '.html') {
13
+        if (file_exists($file) && substr($file, -5) == '.html') {
14 14
             $content = file_get_contents($file);
15 15
         } else {
16 16
             $content = "";
@@ -24,11 +24,11 @@  discard block
 block discarded – undo
24 24
         $file = $this->get('kernel')->getRootDir().'/../web/doc/current/'.$page;
25 25
         //$file = $this->getRequest()->server->get('DOCUMENT_ROOT') . '/doc/current/' . $page;
26 26
 
27
-        if(file_exists($file) && substr($file, -5) == '.html') {
27
+        if (file_exists($file) && substr($file, -5) == '.html') {
28 28
             $content = file_get_contents($file);
29
-        } elseif(file_exists($file) && substr($file, -4) == '.png') {
30
-            return $this->redirect('/doc/current/' . $page);
31
-        } else  {
29
+        } elseif (file_exists($file) && substr($file, -4) == '.png') {
30
+            return $this->redirect('/doc/current/'.$page);
31
+        } else {
32 32
             throw $this->createNotFoundException('The documentation page does not exist');
33 33
         }
34 34
         
Please login to merge, or discard this patch.
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.