@@ -88,7 +88,7 @@ |
||
88 | 88 | |
89 | 89 | /** |
90 | 90 | * @throws \RuntimeException |
91 | - * @return mixed |
|
91 | + * @return ZendClient |
|
92 | 92 | */ |
93 | 93 | protected function authetificate() |
94 | 94 | { |
@@ -92,8 +92,8 @@ |
||
92 | 92 | */ |
93 | 93 | protected function authetificate() |
94 | 94 | { |
95 | - $auth = array_key_exists('user', $this->config)?$this->config['user']:''; |
|
96 | - $pass = array_key_exists('pass', $this->config)?$this->config['pass']:''; |
|
95 | + $auth = array_key_exists('user', $this->config) ? $this->config['user'] : ''; |
|
96 | + $pass = array_key_exists('pass', $this->config) ? $this->config['pass'] : ''; |
|
97 | 97 | return $this->setAuth($auth, $pass); |
98 | 98 | } |
99 | 99 |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - * @author [email protected] |
|
9 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + * @author [email protected] |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | namespace Organizations\Form; |
12 | 12 |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * Set the View object |
26 | 26 | * |
27 | 27 | * @param Renderer $view |
28 | - * @return AbstractHelper |
|
28 | + * @return AbstractEventsHelper |
|
29 | 29 | */ |
30 | 30 | public function setView(Renderer $view) |
31 | 31 | { |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | /** |
37 | 37 | * Get the view object |
38 | 38 | * |
39 | - * @return null|Renderer |
|
39 | + * @return Renderer |
|
40 | 40 | */ |
41 | 41 | public function getView() |
42 | 42 | { |
@@ -160,7 +160,7 @@ |
||
160 | 160 | /** |
161 | 161 | * Starts content capturing. |
162 | 162 | * |
163 | - * @param string|array $type |
|
163 | + * @param string|null $type |
|
164 | 164 | * @param array $options see {@łink render()} for information. |
165 | 165 | * |
166 | 166 | * @return self |
@@ -1,11 +1,11 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** Core view helper */ |
11 | 11 | namespace Core\View\Helper; |
@@ -52,7 +52,6 @@ discard block |
||
52 | 52 | * @method warning() |
53 | 53 | * @method success() |
54 | 54 | * @method danger() |
55 | - |
|
56 | 55 | * |
57 | 56 | *@author Mathias Gelhausen <[email protected]> |
58 | 57 | */ |
@@ -149,7 +148,7 @@ discard block |
||
149 | 148 | ) { |
150 | 149 | $class .= ' alert-dismissable'; |
151 | 150 | $content = '<button type="button" class="close" data-dismiss="alert">×</button>' |
152 | - . '<span class="notification-content">' . $content . '</span>'; |
|
151 | + . '<span class="notification-content">' . $content . '</span>'; |
|
153 | 152 | } |
154 | 153 | |
155 | 154 | $target = array_key_exists('target', $options)?' target="' . $options['target'] . '"':''; |
@@ -152,7 +152,7 @@ |
||
152 | 152 | . '<span class="notification-content">' . $content . '</span>'; |
153 | 153 | } |
154 | 154 | |
155 | - $target = array_key_exists('target', $options)?' target="' . $options['target'] . '"':''; |
|
155 | + $target = array_key_exists('target', $options) ? ' target="' . $options['target'] . '"' : ''; |
|
156 | 156 | $markup = '<div ' . $id . ' class="alert alert-' . $type . $class . '" ' . $target . '>' . $content . '</div>' . PHP_EOL; |
157 | 157 | return $markup; |
158 | 158 | } |
@@ -53,7 +53,6 @@ |
||
53 | 53 | * |
54 | 54 | * @see \Zend\I18n\View\Helper\DateFormat::__invoke() |
55 | 55 | * |
56 | - * @param \DateTime $data|string |
|
57 | 56 | * @param string $dateType |
58 | 57 | * @return string |
59 | 58 | */ |
@@ -40,7 +40,7 @@ |
||
40 | 40 | { |
41 | 41 | const FULL = 'full'; |
42 | 42 | const LONG = 'long'; |
43 | - const MEDIUM= 'medium'; |
|
43 | + const MEDIUM = 'medium'; |
|
44 | 44 | const SHORT = 'short'; |
45 | 45 | const NONE = 'none'; |
46 | 46 |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** SettingsEntityResolverFactory.php */ |
11 | 11 | namespace Settings\Repository; |
@@ -171,7 +171,7 @@ |
||
171 | 171 | * Return all event parameters or a single event parameter. |
172 | 172 | * |
173 | 173 | * @param string $param Parameter name to retrieve, or null to get all. |
174 | - * @param mixed $efault Default value to use when the parameter is missing. |
|
174 | + * @param mixed $default Default value to use when the parameter is missing. |
|
175 | 175 | * @return mixed |
176 | 176 | * @throws RuntimeException |
177 | 177 | */ |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** SettingsEntityResolverFactory.php */ |
11 | 11 | namespace Settings\Repository; |
@@ -17,8 +17,7 @@ |
||
17 | 17 | /** |
18 | 18 | * returns the number of years of the education or work experience |
19 | 19 | * |
20 | - * @param array $obj |
|
21 | - * @return string |
|
20 | + * @return double |
|
22 | 21 | */ |
23 | 22 | public function __invoke($array) |
24 | 23 | { |
@@ -25,13 +25,13 @@ |
||
25 | 25 | // calculate EndDate - StartDate = X Years. |
26 | 26 | // eg. 4.2 Years |
27 | 27 | |
28 | - $days=0; |
|
28 | + $days = 0; |
|
29 | 29 | foreach ($array as $obj) { |
30 | 30 | $date1 = new \DateTime($obj->endDate); |
31 | 31 | $date2 = new \DateTime($obj->startDate); |
32 | 32 | $interval = $date1->diff($date2); |
33 | - $days+=abs($interval->format('%R%a')); |
|
33 | + $days += abs($interval->format('%R%a')); |
|
34 | 34 | } |
35 | - return round($days/365, 1); |
|
35 | + return round($days / 365, 1); |
|
36 | 36 | } |
37 | 37 | } |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** SettingsEntityResolverFactory.php */ |
11 | 11 | namespace Settings\Repository; |
@@ -26,7 +26,7 @@ |
||
26 | 26 | * - injects the MvcEvent instance |
27 | 27 | * |
28 | 28 | * @param ServiceLocatorInterface $serviceLocator |
29 | - * @return \Core\View\Helper\Params |
|
29 | + * @return DateFormat |
|
30 | 30 | * @see \Zend\ServiceManager\FactoryInterface::createService() |
31 | 31 | */ |
32 | 32 | public function createService(ServiceLocatorInterface $serviceLocator) |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** SettingsEntityResolverFactory.php */ |
11 | 11 | namespace Settings\Repository; |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
62 | - * @return \Core\Entity\Collection\ArrayCollection |
|
62 | + * @return EducationInterface |
|
63 | 63 | */ |
64 | 64 | public function getEducations() |
65 | 65 | { |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
83 | - * @return \Core\Entity\Collection\ArrayCollection |
|
83 | + * @return EmploymentInterface |
|
84 | 84 | */ |
85 | 85 | public function getEmployments() |
86 | 86 | { |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |
104 | - * @return \Core\Entity\Collection\ArrayCollection |
|
104 | + * @return SkillInterface |
|
105 | 105 | */ |
106 | 106 | public function getSkills() |
107 | 107 | { |
@@ -10,22 +10,24 @@ |
||
10 | 10 | { |
11 | 11 | |
12 | 12 | /** |
13 | - * @return the $educations |
|
13 | + * @return EducationInterface $educations |
|
14 | 14 | */ |
15 | 15 | public function getEducations(); |
16 | 16 | |
17 | 17 | /** |
18 | - * @param field_type $educations |
|
18 | + * @param CollectionInterface $educations |
|
19 | + * @return Cv |
|
19 | 20 | */ |
20 | 21 | public function setEducations(CollectionInterface $educations); |
21 | 22 | |
22 | 23 | /** |
23 | - * @return the $employments |
|
24 | + * @return EmploymentInterface $employments |
|
24 | 25 | */ |
25 | 26 | public function getEmployments(); |
26 | 27 | |
27 | 28 | /** |
28 | - * @param field_type $employments |
|
29 | + * @param CollectionInterface $employments |
|
30 | + * @return Cv |
|
29 | 31 | */ |
30 | 32 | public function setEmployments(CollectionInterface $employments); |
31 | 33 | } |