Skip to content

Commit 9604fe3

Browse files
committed
removed rarely used @Property phpDoc
1 parent ba9494e commit 9604fe3

17 files changed

+1
-44
lines changed

src/Application/Application.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@
1212

1313
/**
1414
* Front Controller.
15-
*
16-
* @property-read array $requests
17-
* @property-read IPresenter $presenter
18-
* @property-read IRouter $router
19-
* @property-read IPresenterFactory $presenterFactory
2015
*/
2116
class Application extends Nette\Object
2217
{

src/Application/MicroPresenter.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
/**
1818
* Micro presenter.
19-
*
20-
* @property-read Nette\Application\Request $request
2119
*/
2220
class MicroPresenter extends Nette\Object implements Application\IPresenter
2321
{

src/Application/Request.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@
1111

1212

1313
/**
14-
* Presenter request. Immutable object.
14+
* Presenter request.
1515
*
16-
* @property string $presenterName
1716
* @property array $parameters
1817
* @property array $post
1918
* @property array $files

src/Application/Responses/FileResponse.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@
1212

1313
/**
1414
* File download response.
15-
*
16-
* @property-read string $file
17-
* @property-read string $name
18-
* @property-read string $contentType
1915
*/
2016
class FileResponse extends Nette\Object implements Nette\Application\IResponse
2117
{

src/Application/Responses/ForwardResponse.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
/**
1414
* Forwards to new request.
15-
*
16-
* @property-read Nette\Application\Request $request
1715
*/
1816
class ForwardResponse extends Nette\Object implements Nette\Application\IResponse
1917
{

src/Application/Responses/JsonResponse.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212

1313
/**
1414
* JSON response used mainly for AJAX requests.
15-
*
16-
* @property-read array|\stdClass $payload
17-
* @property-read string $contentType
1815
*/
1916
class JsonResponse extends Nette\Object implements Nette\Application\IResponse
2017
{

src/Application/Responses/RedirectResponse.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313

1414
/**
1515
* Redirects to new URI.
16-
*
17-
* @property-read string $url
18-
* @property-read int $code
1916
*/
2017
class RedirectResponse extends Nette\Object implements Nette\Application\IResponse
2118
{

src/Application/Responses/TextResponse.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
/**
1414
* String output response.
15-
*
16-
* @property-read mixed $source
1715
*/
1816
class TextResponse extends Nette\Object implements Nette\Application\IResponse
1917
{

src/Application/Routers/CliRouter.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* The unidirectional router for CLI. (experimental)
16-
*
17-
* @property-read array $defaults
1816
*/
1917
class CliRouter extends Nette\Object implements Application\IRouter
2018
{

src/Application/Routers/Route.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@
1515
/**
1616
* The bidirectional route is responsible for mapping
1717
* HTTP request to a Request object for dispatch and vice-versa.
18-
*
19-
* @property-read string $mask
20-
* @property-read array $defaults
21-
* @property-read int $flags
2218
*/
2319
class Route extends Nette\Object implements Application\IRouter
2420
{

0 commit comments

Comments
 (0)