Completed
Push — develop ( b4fd40...785f8f )
by greg
03:10
created
src/PlaygroundCore/Service/Ffmpeg.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@
 block discarded – undo
171 171
      * This method will merge videos in .mpg format with exactly the same codec and codec parameters :
172 172
      * http://trac.ffmpeg.org/wiki/Concatenate
173 173
      * @param  array $videos
174
-     * @return string
174
+     * @return boolean
175 175
      */
176 176
     public function mergeMpgVideos($videos = false, $target = false)
177 177
     {
Please login to merge, or discard this patch.
src/PlaygroundCore/Service/Formgen.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
      * setFormgenMapper
394 394
      * @param  FormgenMapper $formgenMapper
395 395
      *
396
-     * @return PlaygroundCore\Mapper\FormGen FormGen
396
+     * @return Formgen FormGen
397 397
      */
398 398
     public function setFormgenMapper($formgenMapper)
399 399
     {
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
      * setOptions
407 407
      * @param  ModuleOptions $options
408 408
      *
409
-     * @return PlaygroundCore\Service\Locale $this
409
+     * @return Formgen $this
410 410
      */
411 411
     public function setOptions(ModuleOptions $options)
412 412
     {
Please login to merge, or discard this patch.
src/PlaygroundCore/Service/Locale.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      * setLocaleMapper
50 50
      * @param  LocaleMapper $localeMapper
51 51
      *
52
-     * @return PlaygroundCore\Entity\Locale Locale
52
+     * @return Locale Locale
53 53
      */
54 54
     public function setLocaleMapper($localeMapper)
55 55
     {
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      * setOptions
63 63
      * @param  ModuleOptions $options
64 64
      *
65
-     * @return PlaygroundCore\Service\Locale $this
65
+     * @return Locale $this
66 66
      */
67 67
     public function setOptions(ModuleOptions $options)
68 68
     {
Please login to merge, or discard this patch.
src/PlaygroundCore/Service/Website.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      * setWebsiteMapper
50 50
      * @param  Mapper/Website $websiteMapper
51 51
      *
52
-     * @return PlaygroundCore\Entity\WebsiteMapper websiteMapper
52
+     * @return Website websiteMapper
53 53
      */
54 54
     public function setWebsiteMapper($websiteMapper)
55 55
     {
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      * setOptions
63 63
      * @param  ModuleOptions $options
64 64
      *
65
-     * @return PlaygroundCore\Service\Website $this
65
+     * @return Website $this
66 66
      */
67 67
     public function setOptions(ModuleOptions $options)
68 68
     {
Please login to merge, or discard this patch.
src/PlaygroundCore/Service/Factory/CountryFactory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 class CountryFactory implements FactoryInterface
9 9
 {
10 10
     /**
11
-    * @param ServiceLocatorInterface $locator
12
-    * @return \PlaygroundCore\Service\Country
13
-    */
11
+     * @param ServiceLocatorInterface $locator
12
+     * @return \PlaygroundCore\Service\Country
13
+     */
14 14
     public function createService(ServiceLocatorInterface $locator)
15 15
     {
16 16
         $service = new Country($locator);
Please login to merge, or discard this patch.
src/PlaygroundCore/Service/Factory/FfmpegFactory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 class FfmpegFactory implements FactoryInterface
9 9
 {
10 10
     /**
11
-    * @param ServiceLocatorInterface $locator
12
-    * @return \PlaygroundCore\Service\Ffmpeg
13
-    */
11
+     * @param ServiceLocatorInterface $locator
12
+     * @return \PlaygroundCore\Service\Ffmpeg
13
+     */
14 14
     public function createService(ServiceLocatorInterface $locator)
15 15
     {
16 16
         $service = new Ffmpeg($locator);
Please login to merge, or discard this patch.
src/PlaygroundCore/Service/Factory/ShortenUrlFactory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 class ShortenUrlFactory implements FactoryInterface
9 9
 {
10 10
     /**
11
-    * @param ServiceLocatorInterface $locator
12
-    * @return \PlaygroundCore\Service\ShortenUrl
13
-    */
11
+     * @param ServiceLocatorInterface $locator
12
+     * @return \PlaygroundCore\Service\ShortenUrl
13
+     */
14 14
     public function createService(ServiceLocatorInterface $locator)
15 15
     {
16 16
         $service = new ShortenUrl($locator);
Please login to merge, or discard this patch.
src/PlaygroundCore/Service/Factory/FormgenFactory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 class FormgenFactory implements FactoryInterface
9 9
 {
10 10
     /**
11
-    * @param ServiceLocatorInterface $locator
12
-    * @return \PlaygroundCore\Service\Formgen
13
-    */
11
+     * @param ServiceLocatorInterface $locator
12
+     * @return \PlaygroundCore\Service\Formgen
13
+     */
14 14
     public function createService(ServiceLocatorInterface $locator)
15 15
     {
16 16
         $service = new Formgen($locator);
Please login to merge, or discard this patch.
src/PlaygroundCore/Service/Factory/WebsiteFactory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 class WebsiteFactory implements FactoryInterface
9 9
 {
10 10
     /**
11
-    * @param ServiceLocatorInterface $locator
12
-    * @return \PlaygroundCore\Service\Website
13
-    */
11
+     * @param ServiceLocatorInterface $locator
12
+     * @return \PlaygroundCore\Service\Website
13
+     */
14 14
     public function createService(ServiceLocatorInterface $locator)
15 15
     {
16 16
         $service = new Website($locator);
Please login to merge, or discard this patch.