Completed
Pull Request — master (#64)
by Thibaud
03:06
created
src/PhraseanetSDK/Cache/BackendCacheFactory.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@  discard block
 block discarded – undo
18 18
 
19 19
 class BackendCacheFactory
20 20
 {
21
+    /**
22
+     * @param string $type
23
+     */
21 24
     public function create($type, $host = null, $port = null)
22 25
     {
23 26
         $host = $host ? $host : '127.0.0.1';
@@ -48,6 +51,9 @@  discard block
 block discarded – undo
48 51
         return new ArrayCache();
49 52
     }
50 53
 
54
+    /**
55
+     * @param integer $port
56
+     */
51 57
     private function createMemcache($host, $port)
52 58
     {
53 59
         $memcache = new \Memcache();
@@ -70,6 +76,9 @@  discard block
 block discarded – undo
70 76
         return $cache;
71 77
     }
72 78
 
79
+    /**
80
+     * @param integer $port
81
+     */
73 82
     private function createMemcached($host, $port)
74 83
     {
75 84
         $memcached = new \Memcached();
Please login to merge, or discard this patch.
src/PhraseanetSDK/Recorder/Player.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -70,6 +70,9 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
src/PhraseanetSDK/Repository/DataboxCollection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      * Find all collection in the provided databox
22 22
      *
23 23
      * @param  integer          $databoxId the databox id
24
-     * @return ArrayCollection|\PhraseanetSDK\Entity\DataboxCollection[]
24
+     * @return ArrayCollection
25 25
      * @throws RuntimeException
26 26
      */
27 27
     public function findByDatabox($databoxId)
Please login to merge, or discard this patch.
src/PhraseanetSDK/Repository/Entry.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/PhraseanetSDK/EntityManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     private $repositories = array();
36 36
 
37 37
     /**
38
-     * @param APIGuzzleAdapter $v1Adapter
38
+     * @param APIGuzzleAdapter $adapter
39 39
      * @param LoggerInterface $logger
40 40
      */
41 41
     public function __construct(
Please login to merge, or discard this patch.
src/PhraseanetSDK/Http/GuzzleAdapter.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,6 @@
 block discarded – undo
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(
Please login to merge, or discard this patch.