Fix doc blocks

This commit is contained in:
Romain Neutron 2014-04-18 22:17:16 +02:00
parent 76170fcf96
commit de5d62775a
4 changed files with 7 additions and 5 deletions

View File

@ -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)
{

View File

@ -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)

View File

@ -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)
{

View File

@ -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');
}