@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Created by PhpStorm. |
|
4 | - * User: device |
|
5 | - * Date: 18.03.16 |
|
6 | - * Time: 17:32 |
|
7 | - */ |
|
3 | + * Created by PhpStorm. |
|
4 | + * User: device |
|
5 | + * Date: 18.03.16 |
|
6 | + * Time: 17:32 |
|
7 | + */ |
|
8 | 8 | |
9 | 9 | namespace AppBundle\Tests\Controller\Account; |
10 | 10 |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | */ |
21 | 21 | public function indexAction() |
22 | 22 | { |
23 | - return []; |
|
23 | + return [ ]; |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | $moduleAjax = $em->getRepository('AppBundle:PassModule') |
36 | 36 | ->findAjax($module); |
37 | 37 | |
38 | - return new Response(json_encode(['moduleAjax' => $moduleAjax])); |
|
38 | + return new Response(json_encode([ 'moduleAjax' => $moduleAjax ])); |
|
39 | 39 | } |
40 | 40 | } |
41 | 41 | } |
@@ -37,8 +37,8 @@ discard block |
||
37 | 37 | $passManager = $this->container->get('app.pass_manager'); |
38 | 38 | $result = $passManager->passModule($idPass); |
39 | 39 | |
40 | - if($result['status'] == 'ok' && $request->isMethod('POST')){ |
|
41 | - $form = $result['content'][0]; |
|
40 | + if ($result[ 'status' ] == 'ok' && $request->isMethod('POST')) { |
|
41 | + $form = $result[ 'content' ][ 0 ]; |
|
42 | 42 | $form->bind($request); |
43 | 43 | $data = $form->getData(); |
44 | 44 | $result = $this->get('app.pass_control')->process($data); |
@@ -54,29 +54,29 @@ discard block |
||
54 | 54 | public function passResultAction(Request $request, $idPass) |
55 | 55 | { |
56 | 56 | $passModule = $this->getDoctrine()->getRepository('AppBundle:PassModule') |
57 | - ->getDonePassModuleByIdAndUser($idPass,$this->getUser()->getId()) |
|
57 | + ->getDonePassModuleByIdAndUser($idPass, $this->getUser()->getId()) |
|
58 | 58 | ; |
59 | 59 | |
60 | - if($passModule === null) |
|
60 | + if ($passModule === null) |
|
61 | 61 | throw new HttpException(403, 'You don\'t have permission for look this data'); |
62 | 62 | |
63 | - if($passModule->getStateResult() === PassModule::STATE_EXPIRED) |
|
63 | + if ($passModule->getStateResult() === PassModule::STATE_EXPIRED) |
|
64 | 64 | throw new HttpException(403, 'This pass expired.'); |
65 | 65 | |
66 | - return ['passModule' => $passModule]; |
|
66 | + return [ 'passModule' => $passModule ]; |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | |
70 | - private function processResult($result){ |
|
71 | - switch ($result['status']) { |
|
70 | + private function processResult($result) { |
|
71 | + switch ($result[ 'status' ]) { |
|
72 | 72 | case 'redirect_to_pass': |
73 | - return $this->redirectToRoute('pass_module',['idPass' => $result['content']], $result['code']); |
|
73 | + return $this->redirectToRoute('pass_module', [ 'idPass' => $result[ 'content' ] ], $result[ 'code' ]); |
|
74 | 74 | case 'redirect_to_result': |
75 | - return $this->redirectToRoute('pass_result',['idPass' => $result['content']], $result['code']); |
|
75 | + return $this->redirectToRoute('pass_result', [ 'idPass' => $result[ 'content' ] ], $result[ 'code' ]); |
|
76 | 76 | case 'error': |
77 | - throw new HttpException($result['code'], $result['content']); |
|
77 | + throw new HttpException($result[ 'code' ], $result[ 'content' ]); |
|
78 | 78 | case 'ok': |
79 | - list($form, $question, $time_residue, $countQuestions, $currentNumberQuestion) = $result['content']; |
|
79 | + list($form, $question, $time_residue, $countQuestions, $currentNumberQuestion) = $result[ 'content' ]; |
|
80 | 80 | return [ |
81 | 81 | 'data' => [ |
82 | 82 | 'form' => $form->createView(), |
@@ -57,11 +57,13 @@ |
||
57 | 57 | ->getDonePassModuleByIdAndUser($idPass,$this->getUser()->getId()) |
58 | 58 | ; |
59 | 59 | |
60 | - if($passModule === null) |
|
61 | - throw new HttpException(403, 'You don\'t have permission for look this data'); |
|
60 | + if($passModule === null) { |
|
61 | + throw new HttpException(403, 'You don\'t have permission for look this data'); |
|
62 | + } |
|
62 | 63 | |
63 | - if($passModule->getStateResult() === PassModule::STATE_EXPIRED) |
|
64 | - throw new HttpException(403, 'This pass expired.'); |
|
64 | + if($passModule->getStateResult() === PassModule::STATE_EXPIRED) { |
|
65 | + throw new HttpException(403, 'This pass expired.'); |
|
66 | + } |
|
65 | 67 | |
66 | 68 | return ['passModule' => $passModule]; |
67 | 69 | } |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Created by PhpStorm. |
|
4 | - * User: device |
|
5 | - * Date: 20.03.16 |
|
6 | - * Time: 10:40 |
|
7 | - */ |
|
3 | + * Created by PhpStorm. |
|
4 | + * User: device |
|
5 | + * Date: 20.03.16 |
|
6 | + * Time: 10:40 |
|
7 | + */ |
|
8 | 8 | |
9 | 9 | namespace AppBundle\Services; |
10 | 10 |
@@ -14,10 +14,10 @@ |
||
14 | 14 | public function generator() |
15 | 15 | { |
16 | 16 | $key = ''; |
17 | - $array = array_merge(range('A','Z'),range('a','z'),range('0','9')); |
|
17 | + $array = array_merge(range('A', 'Z'), range('a', 'z'), range('0', '9')); |
|
18 | 18 | $c = count($array); |
19 | - for($i = 0; $i < 6; $i++) { |
|
20 | - $key .= $array[rand(0, $c)]; |
|
19 | + for ($i = 0; $i < 6; $i++) { |
|
20 | + $key .= $array[ rand(0, $c) ]; |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | return $key; |