Skip to content

Commit

Permalink
phpcs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cnizzardini committed Mar 25, 2024
1 parent 2325e55 commit 80eb498
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/collection-view/src/View/JsonCollectionView.php
Expand Up @@ -36,7 +36,7 @@ public function initialize(): void
parent::initialize();
$this->loadHelper('Paginator', [
'templates' => 'MixerApi/CollectionView.paginator-template',
'className' => PagninatorHelper::class
'className' => PagninatorHelper::class,
]);
}

Expand Down
2 changes: 1 addition & 1 deletion plugins/collection-view/src/View/XmlCollectionView.php
Expand Up @@ -66,7 +66,7 @@ public function initialize(): void
parent::initialize();
$this->loadHelper('Paginator', [
'templates' => 'MixerApi/CollectionView.paginator-template',
'className' => PagninatorHelper::class
'className' => PagninatorHelper::class,
]);
}

Expand Down

0 comments on commit 80eb498

Please sign in to comment.