Skip to content

Commit 8333c7a

Browse files
committed
fix static analysis
1 parent 66f2d65 commit 8333c7a

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

src/SchemaModel.php

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ public function deleteRelationshipData( string $key ): void {
205205
*
206206
* @since 0.1.0
207207
*
208-
* @param SchemaModel $this The model.
209-
* @param string $key The key of the relationship.
208+
* @param SchemaModel $model The model.
209+
* @param string $key The key of the relationship.
210210
*/
211211
do_action( "stellarwp_schema_models_pre_delete_relationship_{$key}_{$class}", $this, $key );
212212

@@ -215,8 +215,8 @@ public function deleteRelationshipData( string $key ): void {
215215
*
216216
* @since 0.1.0
217217
*
218-
* @param SchemaModel $this The model.
219-
* @param string $key The key of the relationship.
218+
* @param SchemaModel $model The model.
219+
* @param string $key The key of the relationship.
220220
*/
221221
do_action( "stellarwp_schema_models_pre_delete_relationship_{$key}", $this, $key );
222222

@@ -225,8 +225,8 @@ public function deleteRelationshipData( string $key ): void {
225225
*
226226
* @since 0.1.0
227227
*
228-
* @param SchemaModel $this The model.
229-
* @param string $key The key of the relationship.
228+
* @param SchemaModel $model The model.
229+
* @param string $key The key of the relationship.
230230
*/
231231
do_action( 'stellarwp_schema_models_pre_delete_relationship', $this, $key );
232232

@@ -237,8 +237,8 @@ public function deleteRelationshipData( string $key ): void {
237237
*
238238
* @since 0.1.0
239239
*
240-
* @param SchemaModel $this The model.
241-
* @param string $key The key of the relationship.
240+
* @param SchemaModel $model The model.
241+
* @param string $key The key of the relationship.
242242
*/
243243
do_action( "stellarwp_schema_models_post_delete_relationship_{$key}_{$class}", $this, $key );
244244

@@ -247,8 +247,8 @@ public function deleteRelationshipData( string $key ): void {
247247
*
248248
* @since 0.1.0
249249
*
250-
* @param SchemaModel $this The model.
251-
* @param string $key The key of the relationship.
250+
* @param SchemaModel $model The model.
251+
* @param string $key The key of the relationship.
252252
*/
253253
do_action( "stellarwp_schema_models_post_delete_relationship_{$key}", $this, $key );
254254

@@ -257,8 +257,8 @@ public function deleteRelationshipData( string $key ): void {
257257
*
258258
* @since 0.1.0
259259
*
260-
* @param SchemaModel $this The model.
261-
* @param string $key The key of the relationship.
260+
* @param SchemaModel $model The model.
261+
* @param string $key The key of the relationship.
262262
*/
263263
do_action( 'stellarwp_schema_models_post_delete_relationship', $this, $key );
264264
}
@@ -446,7 +446,7 @@ public function save(): self {
446446
*
447447
* @since 0.1.0
448448
*
449-
* @param SchemaModel $this The model.
449+
* @param SchemaModel $model The model.
450450
*/
451451
do_action( "stellarwp_schema_models_pre_save_{$class}", $this );
452452

@@ -455,7 +455,7 @@ public function save(): self {
455455
*
456456
* @since 0.1.0
457457
*
458-
* @param SchemaModel $this The model.
458+
* @param SchemaModel $model The model.
459459
*/
460460
do_action( 'stellarwp_schema_models_pre_save', $this );
461461

@@ -467,7 +467,7 @@ public function save(): self {
467467
*
468468
* @since 0.1.0
469469
*
470-
* @param SchemaModel $this The model.
470+
* @param SchemaModel $model The model.
471471
*/
472472
do_action( "stellarwp_schema_models_post_save_{$class}", $this );
473473

@@ -476,7 +476,7 @@ public function save(): self {
476476
*
477477
* @since 0.1.0
478478
*
479-
* @param SchemaModel $this The model.
479+
* @param SchemaModel $model The model.
480480
*/
481481
do_action( 'stellarwp_schema_models_post_save', $this );
482482
return $this;
@@ -501,7 +501,7 @@ public function save(): self {
501501
*
502502
* @since 0.1.0
503503
*
504-
* @param SchemaModel $this The model.
504+
* @param SchemaModel $model The model.
505505
*/
506506
do_action( "stellarwp_schema_models_post_save_{$class}", $this );
507507

@@ -510,7 +510,7 @@ public function save(): self {
510510
*
511511
* @since 0.1.0
512512
*
513-
* @param SchemaModel $this The model.
513+
* @param SchemaModel $model The model.
514514
*/
515515
do_action( 'stellarwp_schema_models_post_save', $this );
516516

@@ -551,7 +551,7 @@ public function delete(): bool {
551551
*
552552
* @since 0.1.0
553553
*
554-
* @param SchemaModel $this The model.
554+
* @param SchemaModel $model The model.
555555
*/
556556
do_action( "stellarwp_schema_models_pre_delete_{$class}", $this );
557557

@@ -560,7 +560,7 @@ public function delete(): bool {
560560
*
561561
* @since 0.1.0
562562
*
563-
* @param SchemaModel $this The model.
563+
* @param SchemaModel $model The model.
564564
*/
565565
do_action( 'stellarwp_schema_models_pre_delete', $this );
566566

@@ -573,7 +573,7 @@ public function delete(): bool {
573573
*
574574
* @since 0.1.0
575575
*
576-
* @param SchemaModel $this The model.
576+
* @param SchemaModel $model The model.
577577
*/
578578
do_action( "stellarwp_schema_models_post_delete_{$class}", $this );
579579

@@ -582,7 +582,7 @@ public function delete(): bool {
582582
*
583583
* @since 0.1.0
584584
*
585-
* @param SchemaModel $this The model.
585+
* @param SchemaModel $model The model.
586586
*/
587587
do_action( 'stellarwp_schema_models_post_delete', $this );
588588

0 commit comments

Comments
 (0)