@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | * Adds a mandatory requirement in form of a php.ini configuration. |
224 | 224 | * |
225 | 225 | * @param string $cfgName The configuration name used for ini_get() |
226 | - * @param bool|callback $evaluation Either a boolean indicating whether the configuration should evaluate to true or false, |
|
226 | + * @param boolean|string $evaluation Either a boolean indicating whether the configuration should evaluate to true or false, |
|
227 | 227 | * or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement |
228 | 228 | * @param bool $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false. |
229 | 229 | * This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin. |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | * Adds an optional recommendation in form of a php.ini configuration. |
242 | 242 | * |
243 | 243 | * @param string $cfgName The configuration name used for ini_get() |
244 | - * @param bool|callback $evaluation Either a boolean indicating whether the configuration should evaluate to true or false, |
|
244 | + * @param string|false $evaluation Either a boolean indicating whether the configuration should evaluate to true or false, |
|
245 | 245 | * or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement |
246 | 246 | * @param bool $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false. |
247 | 247 | * This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin. |
@@ -382,7 +382,10 @@ discard block |
||
382 | 382 | <?php if ($hasMinorProblems): ?> |
383 | 383 | <h2>Recommendations</h2> |
384 | 384 | <p> |
385 | - <?php if ($hasMajorProblems): ?>Additionally, to<?php else: ?>To<?php endif; ?> enhance your Symfony experience, |
|
385 | + <?php if ($hasMajorProblems): ?>Additionally, to<?php else { |
|
386 | + : ?>To<?php endif; |
|
387 | +} |
|
388 | +?> enhance your Symfony experience, |
|
386 | 389 | it’s recommended that you fix the following: |
387 | 390 | </p> |
388 | 391 | <ol> |
@@ -398,9 +401,12 @@ discard block |
||
398 | 401 | <p id="phpini">* |
399 | 402 | <?php if ($symfonyRequirements->getPhpIniConfigPath()): ?> |
400 | 403 | Changes to the <strong>php.ini</strong> file must be done in "<strong><?php echo $symfonyRequirements->getPhpIniConfigPath() ?></strong>". |
401 | - <?php else: ?> |
|
404 | + <?php else { |
|
405 | + : ?> |
|
402 | 406 | To change settings, create a "<strong>php.ini</strong>". |
403 | - <?php endif; ?> |
|
407 | + <?php endif; |
|
408 | +} |
|
409 | +?> |
|
404 | 410 | </p> |
405 | 411 | <?php endif; ?> |
406 | 412 |
@@ -15,7 +15,6 @@ |
||
15 | 15 | /** |
16 | 16 | * Class UserType |
17 | 17 | * @package AppBundle\Form |
18 | - |
|
19 | 18 | */ |
20 | 19 | class EditType extends AbstractType |
21 | 20 | { |
@@ -36,7 +36,7 @@ |
||
36 | 36 | { |
37 | 37 | $resolver->setDefaults([ |
38 | 38 | 'data_class' => User::class, |
39 | - 'validation_groups' => ['registration','edit'], |
|
39 | + 'validation_groups' => ['registration', 'edit'], |
|
40 | 40 | ]); |
41 | 41 | } |
42 | 42 | } |
@@ -12,7 +12,6 @@ |
||
12 | 12 | /** |
13 | 13 | * Class UserType |
14 | 14 | * @package AppBundle\Form |
15 | - |
|
16 | 15 | */ |
17 | 16 | class ActivationType extends AbstractType |
18 | 17 | { |
@@ -36,7 +36,7 @@ |
||
36 | 36 | { |
37 | 37 | $resolver->setDefaults([ |
38 | 38 | 'data_class' => User::class, |
39 | - 'validation_groups' => ['registration','edit'], |
|
39 | + 'validation_groups' => ['registration', 'edit'], |
|
40 | 40 | ]); |
41 | 41 | } |
42 | 42 | } |
@@ -40,7 +40,7 @@ |
||
40 | 40 | ->orWhere( |
41 | 41 | $postsQuery->expr()->like('u.email', ':name') |
42 | 42 | ) |
43 | - ->setParameter('name', '%' . $filter->name . '%'); |
|
43 | + ->setParameter('name', '%'.$filter->name.'%'); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | return $postsQuery->getQuery(); |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | |
68 | 68 | $form = $crawler->filter('table td form')->form(); |
69 | 69 | $url_params = explode('/', $form->getUri()); |
70 | - $userid = $url_params[count($url_params)-1]; |
|
70 | + $userid = $url_params[count($url_params) - 1]; |
|
71 | 71 | |
72 | 72 | $client->submit($form, ['activation[enabled]' => false]); |
73 | 73 | $user = $em->getRepository('AppBundle:User')->findOneBy(array("id" => $userid)); |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | |
93 | 93 | $form = $crawler->filter('table td form')->form(); |
94 | 94 | $url_params = explode('/', $form->getUri()); |
95 | - $userid = $url_params[count($url_params)-1]; |
|
95 | + $userid = $url_params[count($url_params) - 1]; |
|
96 | 96 | $crawler = $client->request('GET', '/user/edit/'.$userid); |
97 | 97 | $form = $crawler->selectButton('Save')->form(); |
98 | 98 | $client->submit($form, [ |
@@ -14,7 +14,6 @@ |
||
14 | 14 | /** |
15 | 15 | * Class AdminType |
16 | 16 | * @package AppBundle\Form |
17 | - |
|
18 | 17 | */ |
19 | 18 | class AdminType extends AbstractType |
20 | 19 | { |
@@ -14,7 +14,7 @@ |
||
14 | 14 | exec('./bin/console h:f:l -n --env=test'); |
15 | 15 | |
16 | 16 | $client = static::createClient(); |
17 | - $em = $client->getContainer()->get('doctrine'); |
|
17 | + $em = $client->getContainer()->get('doctrine'); |
|
18 | 18 | |
19 | 19 | $crawler = $client->request('GET', '/login'); |
20 | 20 | $form = $crawler->selectButton('Login')->form(); |