Skip to content

Commit 1863755

Browse files
committed
removed rarely used @Property phpDoc
1 parent 98d0d22 commit 1863755

File tree

10 files changed

+0
-28
lines changed

10 files changed

+0
-28
lines changed

src/Forms/Container.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,7 @@
1313
/**
1414
* Container for form controls.
1515
*
16-
* @property-write $defaults
1716
* @property Nette\Utils\ArrayHash $values
18-
* @property-read bool $valid
19-
* @property ControlGroup $currentGroup
2017
* @property-read \ArrayIterator $controls
2118
* @property-read Form $form
2219
*/

src/Forms/ControlGroup.php

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

1313
/**
1414
* A user group of form controls.
15-
*
16-
* @property-read array $controls
17-
* @property-read array $options
1815
*/
1916
class ControlGroup extends Nette\Object
2017
{

src/Forms/Controls/BaseControl.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,13 @@
1919
* @property-read Form $form
2020
* @property-read string $htmlName
2121
* @property string $htmlId
22-
* @property-read array $options
23-
* @property Nette\Localization\ITranslator|NULL $translator
2422
* @property mixed $value
25-
* @property-read bool $filled
26-
* @property-write $defaultValue
2723
* @property bool $disabled
2824
* @property bool $omitted
2925
* @property-read Html $control
3026
* @property-read Html $label
3127
* @property-read Html $controlPrototype
3228
* @property-read Html $labelPrototype
33-
* @property-read Nette\Forms\Rules $rules
3429
* @property bool $required
3530
* @property-read array $errors
3631
*/

src/Forms/Controls/ChoiceControl.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*
1616
* @property array $items
1717
* @property-read mixed $selectedItem
18-
* @property-read mixed $rawValue
1918
*/
2019
abstract class ChoiceControl extends BaseControl
2120
{

src/Forms/Controls/MultiChoiceControl.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*
1616
* @property array $items
1717
* @property-read array $selectedItems
18-
* @property-read array $rawValue
1918
*/
2019
abstract class MultiChoiceControl extends BaseControl
2120
{

src/Forms/Controls/SelectBox.php

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

1313
/**
1414
* Select box control that allows single item selection.
15-
*
16-
* @property bool $prompt
1715
*/
1816
class SelectBox extends ChoiceControl
1917
{

src/Forms/Controls/SubmitButton.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
* Submittable button control.
1515
*
1616
* @property-read bool $submittedBy
17-
* @property mixed $validationScope
1817
*/
1918
class SubmitButton extends Button implements Nette\Forms\ISubmitterControl
2019
{

src/Forms/Controls/TextBase.php

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

1515
/**
1616
* Implements the basic functionality common to text input controls.
17-
*
18-
* @property string $emptyValue
1917
*/
2018
abstract class TextBase extends BaseControl
2119
{

src/Forms/Controls/TextInput.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
/**
1515
* Single line text input control.
16-
* @property-write $type
1716
*/
1817
class TextInput extends TextBase
1918
{

src/Forms/Form.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,8 @@
1313
/**
1414
* Creates, validates and renders HTML forms.
1515
*
16-
* @property mixed $action
17-
* @property string $method
18-
* @property-read array $groups
19-
* @property Nette\Localization\ITranslator|NULL $translator
20-
* @property-read bool $anchored
21-
* @property-read ISubmitterControl|FALSE $submitted
22-
* @property-read bool $success
23-
* @property-read array $httpData
2416
* @property-read array $errors
2517
* @property-read Nette\Utils\Html $elementPrototype
26-
* @property IFormRenderer $renderer
2718
*/
2819
class Form extends Container implements Nette\Utils\IHtmlString
2920
{

0 commit comments

Comments
 (0)