Skip to content

Commit 4f5ec33

Browse files
OskarStarkfabpot
authored andcommitted
removed useless PHPDoc
1 parent 8561a99 commit 4f5ec33

34 files changed

+0
-83
lines changed

AcceptHeader.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ class AcceptHeader
3232
private $sorted = true;
3333

3434
/**
35-
* Constructor.
36-
*
3735
* @param AcceptHeaderItem[] $items
3836
*/
3937
public function __construct(array $items)

AcceptHeaderItem.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ class AcceptHeaderItem
3939
private $attributes = array();
4040

4141
/**
42-
* Constructor.
43-
*
4442
* @param string $value
4543
* @param array $attributes
4644
*/

BinaryFileResponse.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ class BinaryFileResponse extends Response
3636
protected $deleteFileAfterSend = false;
3737

3838
/**
39-
* Constructor.
40-
*
4139
* @param \SplFileInfo|string $file The file to stream
4240
* @param int $status The response status code
4341
* @param array $headers An array of response headers

Cookie.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ class Cookie
2727
protected $httpOnly;
2828

2929
/**
30-
* Constructor.
31-
*
3230
* @param string $name The name of the cookie
3331
* @param string $value The value of the cookie
3432
* @param int|string|\DateTime|\DateTimeInterface $expire The time the cookie expires

File/Exception/AccessDeniedException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
class AccessDeniedException extends FileException
2020
{
2121
/**
22-
* Constructor.
23-
*
2422
* @param string $path The path to the accessed file
2523
*/
2624
public function __construct($path)

File/Exception/FileNotFoundException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
class FileNotFoundException extends FileException
2020
{
2121
/**
22-
* Constructor.
23-
*
2422
* @param string $path The path to the file that was not found
2523
*/
2624
public function __construct($path)

File/MimeType/FileBinaryMimeTypeGuesser.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ class FileBinaryMimeTypeGuesser implements MimeTypeGuesserInterface
2424
private $cmd;
2525

2626
/**
27-
* Constructor.
28-
*
2927
* The $cmd pattern must contain a "%s" string that will be replaced
3028
* with the file name to guess.
3129
*

File/MimeType/FileinfoMimeTypeGuesser.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ class FileinfoMimeTypeGuesser implements MimeTypeGuesserInterface
2424
private $magicFile;
2525

2626
/**
27-
* Constructor.
28-
*
2927
* @param string $magicFile A magic file to use with the finfo instance
3028
*
3129
* @see http://www.php.net/manual/en/function.finfo-open.php

FileBag.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ class FileBag extends ParameterBag
2424
private static $fileKeys = array('error', 'name', 'size', 'tmp_name', 'type');
2525

2626
/**
27-
* Constructor.
28-
*
2927
* @param array $parameters An array of HTTP files
3028
*/
3129
public function __construct(array $parameters = array())

HeaderBag.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ class HeaderBag implements \IteratorAggregate, \Countable
2222
protected $cacheControl = array();
2323

2424
/**
25-
* Constructor.
26-
*
2725
* @param array $headers An array of HTTP headers
2826
*/
2927
public function __construct(array $headers = array())

0 commit comments

Comments
 (0)