diff --git a/src/Symfony/Component/Console/Helper/DescriptorHelper.php b/src/Symfony/Component/Console/Helper/DescriptorHelper.php index 25ccfd8888..9d1a7d6144 100644 --- a/src/Symfony/Component/Console/Helper/DescriptorHelper.php +++ b/src/Symfony/Component/Console/Helper/DescriptorHelper.php @@ -50,6 +50,7 @@ class DescriptorHelper extends Helper * @param object $object * @param string $format * @param bool $raw + * @param string $namespace */ public function describe(OutputInterface $output, $object, $format = null, $raw = false, $namespace = null) { diff --git a/src/Symfony/Component/Finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php b/src/Symfony/Component/Finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php index 900de4125a..7a39475d05 100644 --- a/src/Symfony/Component/Finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php +++ b/src/Symfony/Component/Finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php @@ -20,7 +20,7 @@ class RecursiveDirectoryIteratorTest extends IteratorTestCase * * @param string $path * @param bool $seekable - * @param bool $supports + * @param bool $contains * @param string $message */ public function testRewind($path, $seekable, $contains, $message = null) @@ -41,7 +41,7 @@ class RecursiveDirectoryIteratorTest extends IteratorTestCase * * @param string $path * @param bool $seekable - * @param bool $supports + * @param bool $contains * @param string $message */ public function testSeek($path, $seekable, $contains, $message = null) diff --git a/src/Symfony/Component/HttpKernel/Fragment/InlineFragmentRenderer.php b/src/Symfony/Component/HttpKernel/Fragment/InlineFragmentRenderer.php index a3f37c359a..be0e37dad6 100644 --- a/src/Symfony/Component/HttpKernel/Fragment/InlineFragmentRenderer.php +++ b/src/Symfony/Component/HttpKernel/Fragment/InlineFragmentRenderer.php @@ -32,7 +32,8 @@ class InlineFragmentRenderer extends RoutableFragmentRenderer /** * Constructor. * - * @param HttpKernelInterface $kernel A HttpKernelInterface instance + * @param HttpKernelInterface $kernel A HttpKernelInterface instance + * @param EventDispatcherInterface|null $dispatcher A EventDispatcherInterface instance */ public function __construct(HttpKernelInterface $kernel, EventDispatcherInterface $dispatcher = null) { diff --git a/src/Symfony/Component/Translation/MetadataAwareInterface.php b/src/Symfony/Component/Translation/MetadataAwareInterface.php index 1c4393510f..e93c6fbc71 100644 --- a/src/Symfony/Component/Translation/MetadataAwareInterface.php +++ b/src/Symfony/Component/Translation/MetadataAwareInterface.php @@ -25,8 +25,8 @@ interface MetadataAwareInterface * domain and then by key. Passing an empty key will return an array with all * metadata for the given domain. * - * @param string $domain The domain name * @param string $key The key + * @param string $domain The domain name * * @return mixed The value that was set or an array with the domains/keys or null */ @@ -47,8 +47,8 @@ interface MetadataAwareInterface * Passing an empty domain will delete all metadata. Passing an empty key will * delete all metadata for the given domain. * - * @param string $domain The domain name * @param string $key The key + * @param string $domain The domain name */ public function deleteMetadata($key = '', $domain = 'messages'); }