Skip to content

Commit b5bd901

Browse files
committed
some classes marked as final (BC break)
1 parent f50902e commit b5bd901

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/Forms/ControlGroup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* A user group of form controls.
1717
*/
18-
class ControlGroup
18+
final class ControlGroup
1919
{
2020
use Nette\SmartObject;
2121

src/Forms/Helpers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* Forms helpers.
1919
*/
20-
class Helpers
20+
final class Helpers
2121
{
2222
use Nette\StaticClass;
2323

src/Forms/Rule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/**
1717
* Single validation rule or condition represented as value object.
1818
*/
19-
class Rule
19+
final class Rule
2020
{
2121
use Nette\SmartObject;
2222

src/Forms/Rules.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/**
1717
* List of validation & condition rules.
1818
*/
19-
class Rules implements \IteratorAggregate
19+
final class Rules implements \IteratorAggregate
2020
{
2121
use Nette\SmartObject;
2222

src/Forms/Validator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* Common validators.
1919
*/
20-
class Validator
20+
final class Validator
2121
{
2222
use Nette\StaticClass;
2323

0 commit comments

Comments
 (0)