Passed
Push — master ( de3595...5928a0 )
by dima
05:09
created
example/Domain/City/CityMapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 	 * создаем сущность
28 28
 	 * 
29 29
 	 * @param array $row
30
-	 * @return type
30
+	 * @return \SimpleORM\EntityInterface
31 31
 	 */
32 32
 	public function createEntity(array $row) {
33 33
 		return $this->buildEntity(new City(), $row);
Please login to merge, or discard this patch.
example/Domain/User/User.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -22,6 +22,11 @@  discard block
 block discarded – undo
22 22
 	protected $group;
23 23
 	protected $address;
24 24
 			
25
+	/**
26
+	 * @param string $name
27
+	 * @param string $email
28
+	 * @param string $password
29
+	 */
25 30
 	function __construct($name, $email, $password, UserGroup $Group) {
26 31
 		$this->setName($name);
27 32
 		$this->setEmail($email);
@@ -64,6 +69,9 @@  discard block
 block discarded – undo
64 69
 		$this->password = $password;
65 70
 	}
66 71
 
72
+	/**
73
+	 * @param UserGroup $group
74
+	 */
67 75
 	function setGroup($group) {
68 76
 		$this->group = $group;
69 77
 	}
Please login to merge, or discard this patch.
example/Domain/UserAddress/UserAddressMapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 	 * создаем сущность
28 28
 	 * 
29 29
 	 * @param array $row
30
-	 * @return type
30
+	 * @return \SimpleORM\EntityInterface
31 31
 	 */
32 32
 	public function createEntity(array $row) {
33 33
 		return $this->buildEntity(new UserAddress(), $row);
Please login to merge, or discard this patch.
example/Domain/UserGroup/UserGroup.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -18,6 +18,10 @@
 block discarded – undo
18 18
 	
19 19
 	protected $title;
20 20
 	
21
+	/**
22
+	 * @param string $code
23
+	 * @param string $title
24
+	 */
21 25
 	function __construct($code,$title){
22 26
 		$this->setCode($code);
23 27
 		$this->setTitle($title);
Please login to merge, or discard this patch.
src/AbstractDataMapper.php 1 patch
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -303,9 +303,9 @@  discard block
 block discarded – undo
303 303
 	/**
304 304
 	 * Подготавливаем конечный вариант Сущности
305 305
 	 * 
306
-	 * @param \Core\Infrastructure\EntityInterface $Entity
306
+	 * @param EntityInterface $Entity
307 307
 	 * @param array $row
308
-	 * @return \Core\Infrastructure\EntityInterface
308
+	 * @return EntityInterface
309 309
 	 * @throws BadMethodCallException
310 310
 	 */
311 311
 	protected function buildEntity(EntityInterface $Entity, array $row){
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
 	
356 356
 	/**
357 357
 	 * из объекта формирует массив
358
-	 * @param \Core\Infrastructure\EntityInterface $Entity
358
+	 * @param EntityInterface $Entity
359 359
 	 * @return \Core\Infrastructure\EntityInterface
360 360
 	 * @throws BadMethodCallException
361 361
 	 */
@@ -400,6 +400,7 @@  discard block
 block discarded – undo
400 400
 	
401 401
 	/**
402 402
 	 * Установка поля для маппинга
403
+	 * @param string $alias
403 404
 	 */
404 405
 	protected function addMappingField($alias,$field = null){
405 406
 		
Please login to merge, or discard this patch.