Skip to content

Commit 2e1453e

Browse files
committed
fixed typo
1 parent 69eca98 commit 2e1453e

File tree

244 files changed

+690
-690
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

244 files changed

+690
-690
lines changed

app/App.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ public function getCurrentLocale(): ?string
442442

443443

444444
/**
445-
* {@inheritdocs}
445+
* {@inheritdoc}
446446
*
447447
* @param string $name
448448
* @param mixed $arguments

app/base/abstracts/Commands/CodeGeneratorCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ abstract class CodeGeneratorCommand extends BaseCommand
3535
protected $composer_reader;
3636

3737
/**
38-
* {@inheritdocs}
38+
* {@inheritdoc}
3939
*
4040
* @param string|null $name
4141
* @param ContainerInterface|null $container

app/base/abstracts/ContainerAwareObject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function __construct(
3838
) { }
3939

4040
/**
41-
* {@inheritdocs}
41+
* {@inheritdoc}
4242
*
4343
* @param string $name
4444
* @param mixed $arguments

app/base/abstracts/Controllers/AdminFormPage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ abstract class AdminFormPage extends AdminPage
3131
use FormPageTrait;
3232

3333
/**
34-
* {@inheritdocs}
34+
* {@inheritdoc}
3535
*
3636
* @param ContainerInterface $container
3737
* @param Request $request

app/base/abstracts/Controllers/AdminJsonPage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ abstract class AdminJsonPage extends BaseJsonPage
2626
use AdminTrait;
2727

2828
/**
29-
* {@inheritdocs}
29+
* {@inheritdoc}
3030
*
3131
* @return Response|self
3232
* @throws PermissionDeniedException

app/base/abstracts/Controllers/AdminPage.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ abstract class AdminPage extends BaseHtmlPage
4242
protected string $page_title;
4343

4444
/**
45-
* {@inheritdocs}
45+
* {@inheritdoc}
4646
*
4747
* @param ContainerInterface $container
4848
* @param Request $request
@@ -102,7 +102,7 @@ protected function beforeRender(): BasePage|Response
102102
}
103103

104104
/**
105-
* {@inheritdocs}
105+
* {@inheritdoc}
106106
*
107107
* @param RouteInfo|null $route_info
108108
* @param array $route_data
@@ -184,7 +184,7 @@ protected function prepareTemplate(): Template
184184
}
185185

186186
/**
187-
* {@inheritdocs}
187+
* {@inheritdoc}
188188
*
189189
* @return array
190190
* @throws DependencyException
@@ -214,7 +214,7 @@ public function getPageTitle(): string
214214
}
215215

216216
/**
217-
* {@inheritdocs}
217+
* {@inheritdoc}
218218
*
219219
* @return string|null
220220
* @throws BasicException
@@ -275,7 +275,7 @@ public function getSidebarSize() : string
275275
}
276276

277277
/**
278-
* {@inheritdocs}
278+
* {@inheritdoc}
279279
*
280280
* @return array
281281
*/

app/base/abstracts/Controllers/BaseHtmlPage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public function renderPage(?RouteInfo $route_info = null, $route_data = []): Bas
109109
}
110110

111111
/**
112-
* {@inheritdocs}
112+
* {@inheritdoc}
113113
*
114114
* @param RouteInfo|null $route_info
115115
* @param array $route_data

app/base/abstracts/Controllers/BaseJsonPage.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
abstract class BaseJsonPage extends BasePage
3131
{
3232
/**
33-
* {@inheritdocs}
33+
* {@inheritdoc}
3434
*
3535
* @param ContainerInterface $container
3636
* @param Request $request
@@ -49,7 +49,7 @@ public function __construct(
4949
}
5050

5151
/**
52-
* {@inheritdocs}
52+
* {@inheritdoc}
5353
*
5454
* @param RouteInfo|null $route_info
5555
* @param array $route_data

app/base/abstracts/Controllers/BaseRestPage.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
abstract class BaseRestPage extends BasePage
3434
{
3535
/**
36-
* {@inheritdocs}
36+
* {@inheritdoc}
3737
*
3838
* @param ContainerInterface $container
3939
* @param Request $request
@@ -107,7 +107,7 @@ protected function loadObject($id): ?BaseModel
107107
}
108108

109109
/**
110-
* {@inheritdocs}
110+
* {@inheritdoc}
111111
*
112112
* @param RouteInfo|null $route_info
113113
* @param array $route_data

app/base/abstracts/Controllers/BaseWebhookPage.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ abstract class BaseWebhookPage extends BasePage
3636
use PageTrait;
3737

3838
/**
39-
* {@inheritdocs}
39+
* {@inheritdoc}
4040
*
4141
* @param ContainerInterface $container
4242
* @param Request $request
@@ -55,7 +55,7 @@ public function __construct(
5555
}
5656

5757
/**
58-
* {@inheritdocs}
58+
* {@inheritdoc}
5959
*
6060
* @param RouteInfo|null $route_info
6161
* @param array $route_data

app/base/abstracts/Controllers/BaseXMLPage.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
abstract class BaseXMLPage extends BasePage
3131
{
3232
/**
33-
* {@inheritdocs}
33+
* {@inheritdoc}
3434
*
3535
* @param ContainerInterface $container
3636
* @param Request $request
@@ -49,7 +49,7 @@ public function __construct(
4949
}
5050

5151
/**
52-
* {@inheritdocs}
52+
* {@inheritdoc}
5353
*
5454
* @param RouteInfo|null $route_info
5555
* @param array $route_data

app/base/abstracts/Controllers/FormPage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ abstract class FormPage extends FrontendPage
3131
use FormPageTrait;
3232

3333
/**
34-
* {@inheritdocs}
34+
* {@inheritdoc}
3535
*
3636
* @param ContainerInterface $container
3737
* @param Request $request

app/base/abstracts/Controllers/FrontendPage.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ abstract class FrontendPage extends BaseHtmlPage
5252
protected array $regions = [];
5353

5454
/**
55-
* {@inheritdocs}
55+
* {@inheritdoc}
5656
*
5757
* @param ContainerInterface $container
5858
* @param Request $request
@@ -92,7 +92,7 @@ public function __construct(
9292
}
9393

9494
/**
95-
* {@inheritdocs}
95+
* {@inheritdoc}
9696
*
9797
* @return array
9898
* @throws BasicException
@@ -155,7 +155,7 @@ public function addTag(string $region, TagElement|array $tag): bool|self
155155
}
156156

157157
/**
158-
* {@inheritdocs}
158+
* {@inheritdoc}
159159
*
160160
* @return Template
161161
* @throws BasicException
@@ -207,7 +207,7 @@ protected function prepareTemplate(): Template
207207
}
208208

209209
/**
210-
* {@inheritdocs}
210+
* {@inheritdoc}
211211
*
212212
* @return Response|self
213213
* @throws BasicException
@@ -223,7 +223,7 @@ protected function beforeRender() : BasePage|Response
223223
}
224224

225225
/**
226-
* {@inheritdocs}
226+
* {@inheritdoc}
227227
*
228228
* @param RouteInfo|null $route_info
229229
* @param array $route_data
@@ -387,7 +387,7 @@ public function showBlocks(): bool
387387
}
388388

389389
/**
390-
* {@inheritdocs}
390+
* {@inheritdoc}
391391
*
392392
* @return bool
393393
*/

app/base/abstracts/Controllers/FrontendPageWithObject.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ abstract class FrontendPageWithObject extends FrontendPage
3232
use FrontendPageTrait;
3333

3434
/**
35-
* {@inheritdocs}
35+
* {@inheritdoc}
3636
*
3737
* @return Response|self
3838
* @throws PermissionDeniedException
@@ -50,7 +50,7 @@ protected function beforeRender() : BasePage|Response
5050
}
5151

5252
/**
53-
* {@inheritdocs}
53+
* {@inheritdoc}
5454
*
5555
* @param RouteInfo|null $route_info
5656
* @param array $route_data
@@ -119,7 +119,7 @@ public function getFpcCacheKey() : string
119119
}
120120

121121
/**
122-
* {@inheritdocs}
122+
* {@inheritdoc}
123123
*/
124124
public function getInfo() : array
125125
{

app/base/abstracts/Controllers/LoggedUserFormPage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ abstract class LoggedUserFormPage extends LoggedUserPage
3232
use FormPageTrait;
3333

3434
/**
35-
* {@inheritdocs}
35+
* {@inheritdoc}
3636
*
3737
* @param ContainerInterface $container
3838
* @param Request $request

app/base/abstracts/Controllers/LoggedUserPage.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ abstract class LoggedUserPage extends FrontendPage
3737
protected string $page_title;
3838

3939
/**
40-
* {@inheritdocs}
40+
* {@inheritdoc}
4141
*
4242
* @param ContainerInterface $container
4343
* @param Request $request
@@ -98,7 +98,7 @@ public function getPageTitle(): string
9898
}
9999

100100
/**
101-
* {@inheritdocs}
101+
* {@inheritdoc}
102102
*
103103
* @return array
104104
*/

app/base/abstracts/Migrations/DBMigration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ abstract class DBMigration extends BaseMigration
2929
protected string $tableName;
3030

3131
/**
32-
* {@inheritdocs}
32+
* {@inheritdoc}
3333
* @throws Exception
3434
*/
3535
public function up() : void
@@ -63,7 +63,7 @@ public function up() : void
6363
}
6464

6565
/**
66-
* {@inheritdocs}
66+
* {@inheritdoc}
6767
* @throws BasicException
6868
*/
6969
public function down() : void

0 commit comments

Comments
 (0)