@@ -26,7 +26,7 @@ |
||
| 26 | 26 | /** |
| 27 | 27 | * Constructor. |
| 28 | 28 | * |
| 29 | - * @param Action $action |
|
| 29 | + * @param string $action |
|
| 30 | 30 | */ |
| 31 | 31 | public function __construct($action) |
| 32 | 32 | { |
@@ -120,7 +120,7 @@ |
||
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | /** |
| 123 | - * @param array $profiles |
|
| 123 | + * @param string[] $profiles |
|
| 124 | 124 | */ |
| 125 | 125 | public function setProfiles($profiles) |
| 126 | 126 | { |
@@ -108,7 +108,7 @@ |
||
| 108 | 108 | * @param bool $miss |
| 109 | 109 | * @param array $settings |
| 110 | 110 | * |
| 111 | - * @return \PHPUnit_Framework_MockObject_MockObject|PoolInterface |
|
| 111 | + * @return PoolInterface |
|
| 112 | 112 | */ |
| 113 | 113 | private function getPool($miss = true, $settings = []) |
| 114 | 114 | { |
@@ -41,7 +41,7 @@ |
||
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | /** |
| 44 | - * @return array |
|
| 44 | + * @return \Twig_SimpleFunction[] |
|
| 45 | 45 | */ |
| 46 | 46 | public function getFunctions() |
| 47 | 47 | { |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | /** |
| 20 | 20 | * Returns list of new Twig functions. |
| 21 | 21 | * |
| 22 | - * @return array |
|
| 22 | + * @return \Twig_SimpleFilter[] |
|
| 23 | 23 | */ |
| 24 | 24 | public function getFilters() |
| 25 | 25 | { |
@@ -99,7 +99,7 @@ |
||
| 99 | 99 | |
| 100 | 100 | // Try to change value through change setting action. |
| 101 | 101 | $data[0] = ['foo_setting_1', false]; |
| 102 | - $data[1] = ['foo_setting_non_existent', false ]; |
|
| 102 | + $data[1] = ['foo_setting_non_existent', false]; |
|
| 103 | 103 | |
| 104 | 104 | foreach ($data as $case) { |
| 105 | 105 | $client->request('get', '/admin/setting/change/' . base64_encode($case[0])); |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | // Case #0. No profiles selected. |
| 29 | 29 | $cases[] = [[], []]; |
| 30 | 30 | // Case #1. One profile selected. |
| 31 | - $cases[] = [ ['ongr_settings_profile_foo-2e-com' => true], ['foo.com'] ]; |
|
| 31 | + $cases[] = [['ongr_settings_profile_foo-2e-com' => true], ['foo.com']]; |
|
| 32 | 32 | // Case #2. One profile unselected. |
| 33 | 33 | $cases[] = [ |
| 34 | 34 | ['ongr_settings_profile_foo-2e-com' => false, 'ongr_settings_profile_bar-2e-com' => true], |
@@ -86,7 +86,7 @@ |
||
| 86 | 86 | /** |
| 87 | 87 | * Returns mock of ORM manager. |
| 88 | 88 | * |
| 89 | - * @return Manager |
|
| 89 | + * @return \ONGR\ElasticsearchBundle\Service\Manager |
|
| 90 | 90 | */ |
| 91 | 91 | protected function getManagerMock() |
| 92 | 92 | { |
@@ -66,7 +66,7 @@ |
||
| 66 | 66 | ->with( |
| 67 | 67 | 'extractSettings', |
| 68 | 68 | $this->callback( |
| 69 | - function ($value) use ($expectedMethod) { |
|
| 69 | + function($value) use ($expectedMethod) { |
|
| 70 | 70 | return $value[1] == $expectedMethod; |
| 71 | 71 | } |
| 72 | 72 | ) |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | |
| 36 | 36 | $string = preg_replace_callback( |
| 37 | 37 | '/[^a-zA-Z0-9_]/u', |
| 38 | - function ($matches) { |
|
| 38 | + function($matches) { |
|
| 39 | 39 | return '-' . bin2hex($matches[0]) . '-'; |
| 40 | 40 | }, |
| 41 | 41 | $string |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | |
| 60 | 60 | $string = preg_replace_callback( |
| 61 | 61 | '/-([0-9a-f]+)-/u', |
| 62 | - function ($matches) { |
|
| 62 | + function($matches) { |
|
| 63 | 63 | return hex2bin($matches[1]); |
| 64 | 64 | }, |
| 65 | 65 | $string |