Skip to content

Commit 5dcd596

Browse files
authored
Merge pull request #1153 from crstauf/phpcs/ActionScheduler_wpPostStore_TaxonomyRegistrar.php
PHPCS: `classes/data-stores/ActionScheduler_wpPostStore_TaxonomyRegistrar.php`
2 parents 7546394 + 152cd49 commit 5dcd596

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

classes/data-stores/ActionScheduler_wpPostStore_TaxonomyRegistrar.php

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
/**
44
* Class ActionScheduler_wpPostStore_TaxonomyRegistrar
5+
*
56
* @codeCoverageIgnore
67
*/
78
class ActionScheduler_wpPostStore_TaxonomyRegistrar {
@@ -18,12 +19,12 @@ public function register() {
1819
*/
1920
protected function taxonomy_args() {
2021
$args = array(
21-
'label' => __( 'Action Group', 'action-scheduler' ),
22-
'public' => false,
23-
'hierarchical' => false,
22+
'label' => __( 'Action Group', 'action-scheduler' ),
23+
'public' => false,
24+
'hierarchical' => false,
2425
'show_admin_column' => true,
25-
'query_var' => false,
26-
'rewrite' => false,
26+
'query_var' => false,
27+
'rewrite' => false,
2728
);
2829

2930
$args = apply_filters( 'action_scheduler_taxonomy_args', $args );

phpcs.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
</rule>
5050

5151
<rule ref="PEAR.NamingConventions.ValidClassName">
52+
<exclude-pattern>classes/data-stores/ActionScheduler_wpPostStore_TaxonomyRegistrar.php</exclude-pattern>
5253
<exclude-pattern>tests/phpunit/jobstore/ActionScheduler_wpPostStore_Test.php</exclude-pattern>
5354
<exclude-pattern>classes/data-stores/ActionScheduler_wpCommentLogger.php</exclude-pattern>
5455
<exclude-pattern>classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php</exclude-pattern>

0 commit comments

Comments
 (0)