Skip to content

Commit cacec6f

Browse files
phpcs fixes v1
1 parent e56df3a commit cacec6f

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/Cron_Event_Command.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,9 @@ public function schedule( $args, $assoc_args ) {
224224
*
225225
* [--all]
226226
* : Run all hooks.
227-
*
228-
* [--verbose]
229-
* : List event both before and after execution.
227+
*
228+
* [--verbose]
229+
* : List event both before and after execution.
230230
*
231231
* ## EXAMPLES
232232
*
@@ -245,11 +245,11 @@ public function run( $args, $assoc_args ) {
245245
}
246246

247247
$executed = 0;
248-
$verbose = Utils\get_flag_value( $assoc_args, 'verbose' );
248+
$verbose = Utils\get_flag_value( $assoc_args, 'verbose' );
249249
foreach ( $events as $event ) {
250-
if ( $verbose ) {
251-
WP_CLI::log( sprintf( "Beginning execution of cron event '%s'.", $event->hook ) );
252-
}
250+
if ( $verbose ) {
251+
WP_CLI::log( sprintf( "Beginning execution of cron event '%s'.", $event->hook ) );
252+
}
253253
$start = microtime( true );
254254
$result = self::run_event( $event );
255255
$total = round( microtime( true ) - $start, 3 );

0 commit comments

Comments
 (0)