Skip to content

Commit 052c1d1

Browse files
committed
typo
1 parent 73a9bcd commit 052c1d1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/Application/UI/Component.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public static function getReflection(): ComponentReflection
152152

153153

154154
/**
155-
* Loads state informations.
155+
* Loads state information.
156156
*/
157157
public function loadState(array $params): void
158158
{
@@ -180,7 +180,7 @@ public function loadState(array $params): void
180180

181181

182182
/**
183-
* Saves state informations for next request.
183+
* Saves state information for next request.
184184
*/
185185
public function saveState(array &$params): void
186186
{

src/Application/UI/ComponentReflection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public function getPersistentComponents(?string $class = null): array
101101

102102

103103
/**
104-
* Saves state informations for next request.
104+
* Saves state information for next request.
105105
*/
106106
public function saveState(Component $component, array &$params): void
107107
{

src/Application/UI/Presenter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1285,7 +1285,7 @@ protected function getGlobalState(?string $forClass = null): array
12851285

12861286

12871287
/**
1288-
* Saves state informations for next request.
1288+
* Saves state information for next request.
12891289
*/
12901290
public function saveState(array &$params, ?ComponentReflection $reflection = null): void
12911291
{

src/Application/UI/StatePersistent.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
interface StatePersistent
1717
{
1818
/**
19-
* Loads state informations.
19+
* Loads state information.
2020
*/
2121
function loadState(array $params): void;
2222

2323
/**
24-
* Saves state informations for next request.
24+
* Saves state information for next request.
2525
*/
2626
function saveState(array &$params): void;
2727
}

0 commit comments

Comments
 (0)