@@ -12,8 +12,6 @@ |
||
12 | 12 | namespace PhraseanetSDK\Entity; |
13 | 13 | |
14 | 14 | use Doctrine\Common\Collections\ArrayCollection; |
15 | -use PhraseanetSDK\Annotation\ApiField as ApiField; |
|
16 | -use PhraseanetSDK\Annotation\ApiRelation as ApiRelation; |
|
17 | 15 | use PhraseanetSDK\EntityManager; |
18 | 16 | |
19 | 17 | class Query |
@@ -12,8 +12,6 @@ |
||
12 | 12 | namespace PhraseanetSDK\Entity; |
13 | 13 | |
14 | 14 | use Doctrine\Common\Collections\ArrayCollection; |
15 | -use PhraseanetSDK\Annotation\ApiField as ApiField; |
|
16 | -use PhraseanetSDK\Annotation\ApiRelation as ApiRelation; |
|
17 | 15 | use PhraseanetSDK\EntityManager; |
18 | 16 | |
19 | 17 | class Story |
@@ -70,6 +70,9 @@ |
||
70 | 70 | } |
71 | 71 | } |
72 | 72 | |
73 | + /** |
|
74 | + * @param string $message |
|
75 | + */ |
|
73 | 76 | private function output($message, OutputInterface $output = null) |
74 | 77 | { |
75 | 78 | if (null !== $output) { |
@@ -22,7 +22,7 @@ |
||
22 | 22 | * Retrieve the entry identified by its id |
23 | 23 | * |
24 | 24 | * @param integer $id The entry id |
25 | - * @return \PhraseanetSDK\Entity\Feed |
|
25 | + * @return FeedEntry |
|
26 | 26 | * @throws RuntimeException |
27 | 27 | */ |
28 | 28 | public function findById($id) |
@@ -14,7 +14,6 @@ |
||
14 | 14 | use PhraseanetSDK\Entity\FeedEntry; |
15 | 15 | use PhraseanetSDK\Exception\RuntimeException; |
16 | 16 | use Doctrine\Common\Collections\ArrayCollection; |
17 | -use PhraseanetSDK\EntityHydrator; |
|
18 | 17 | |
19 | 18 | class Entry extends AbstractRepository |
20 | 19 | { |
@@ -14,7 +14,6 @@ |
||
14 | 14 | use PhraseanetSDK\Exception\RuntimeException; |
15 | 15 | use PhraseanetSDK\Exception\NotFoundException; |
16 | 16 | use Doctrine\Common\Collections\ArrayCollection; |
17 | -use PhraseanetSDK\EntityHydrator; |
|
18 | 17 | |
19 | 18 | class Subdef extends AbstractRepository |
20 | 19 | { |
@@ -133,7 +133,6 @@ |
||
133 | 133 | * |
134 | 134 | * @param string $endpoint |
135 | 135 | * @param EventSubscriberInterface[] $plugins |
136 | - * @param int $endpointVersion |
|
137 | 136 | * @return static |
138 | 137 | */ |
139 | 138 | public static function create( |
@@ -22,6 +22,9 @@ discard block |
||
22 | 22 | */ |
23 | 23 | class BackendCacheFactory |
24 | 24 | { |
25 | + /** |
|
26 | + * @param string $type |
|
27 | + */ |
|
25 | 28 | public function create($type, $host = null, $port = null) |
26 | 29 | { |
27 | 30 | $host = $host ? $host : '127.0.0.1'; |
@@ -52,6 +55,9 @@ discard block |
||
52 | 55 | return new ArrayCache(); |
53 | 56 | } |
54 | 57 | |
58 | + /** |
|
59 | + * @param integer $port |
|
60 | + */ |
|
55 | 61 | private function createMemcache($host, $port) |
56 | 62 | { |
57 | 63 | $memcache = new \Memcache(); |
@@ -74,6 +80,9 @@ discard block |
||
74 | 80 | return $cache; |
75 | 81 | } |
76 | 82 | |
83 | + /** |
|
84 | + * @param integer $port |
|
85 | + */ |
|
77 | 86 | private function createMemcached($host, $port) |
78 | 87 | { |
79 | 88 | $memcached = new \Memcached(); |
@@ -14,7 +14,6 @@ |
||
14 | 14 | use PhraseanetSDK\AbstractRepository; |
15 | 15 | use PhraseanetSDK\Exception\RuntimeException; |
16 | 16 | use Doctrine\Common\Collections\ArrayCollection; |
17 | -use PhraseanetSDK\EntityHydrator; |
|
18 | 17 | |
19 | 18 | class Basket extends AbstractRepository |
20 | 19 | { |
@@ -14,7 +14,6 @@ |
||
14 | 14 | use PhraseanetSDK\AbstractRepository; |
15 | 15 | use PhraseanetSDK\Exception\RuntimeException; |
16 | 16 | use Doctrine\Common\Collections\ArrayCollection; |
17 | -use PhraseanetSDK\EntityHydrator; |
|
18 | 17 | |
19 | 18 | class BasketElement extends AbstractRepository |
20 | 19 | { |