@@ -171,7 +171,7 @@ |
||
| 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 | { |
@@ -393,7 +393,7 @@ discard block |
||
| 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 |
||
| 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 | { |
@@ -49,7 +49,7 @@ discard block |
||
| 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 |
||
| 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 | { |
@@ -49,7 +49,7 @@ discard block |
||
| 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 |
||
| 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 | { |
@@ -8,9 +8,9 @@ |
||
| 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); |
@@ -8,9 +8,9 @@ |
||
| 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); |
@@ -8,9 +8,9 @@ |
||
| 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); |
@@ -8,9 +8,9 @@ |
||
| 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); |
@@ -8,9 +8,9 @@ |
||
| 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); |