This commit is contained in:
Fabien Potencier 2017-09-11 14:10:59 -07:00
parent 4e1c65c6f9
commit df07e73363
4 changed files with 4 additions and 4 deletions

View File

@ -222,7 +222,7 @@ EOT
* @param string $targetDir
* @param bool $relative
*
* @throws IOException If link can not be created.
* @throws IOException if link can not be created
*/
private function symlink($originDir, $targetDir, $relative = false)
{

View File

@ -777,7 +777,7 @@ class Definition
*
* @return $this
*
* @throws InvalidArgumentException When the message template is invalid.
* @throws InvalidArgumentException when the message template is invalid
*/
public function setDeprecated($status = true, $template = null)
{

View File

@ -29,7 +29,7 @@ interface LdapClientInterface
* @param string $dn A LDAP dn
* @param string $password A password
*
* @throws ConnectionException If dn / password could not be bound.
* @throws ConnectionException if dn / password could not be bound
*/
public function bind($dn = null, $password = null);

View File

@ -59,7 +59,7 @@ abstract class FileLoader extends ArrayLoader
*
* @return array
*
* @throws InvalidResourceException If stream content has an invalid format.
* @throws InvalidResourceException if stream content has an invalid format
*/
abstract protected function loadResource($resource);
}