Skip to content

Commit 40a3498

Browse files
committed
fix phpcs
1 parent 5d8db6b commit 40a3498

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

lib/Cleantalk/ApbctWP/Cron.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Cron extends \Cleantalk\Common\Cron
66
{
77
/**
88
* Get fresh instance of Cron
9-
*
9+
*
1010
* @return Cron
1111
*/
1212
public static function getInstance()
@@ -61,19 +61,19 @@ public function getTasks()
6161
$this->cron_option_name
6262
)
6363
);
64-
64+
6565
if (!$result) {
6666
return array();
6767
}
68-
68+
6969
// First unserialize the outer string
7070
$unserialized = unserialize($result);
71-
71+
7272
// If the unserialized data is still a string, it needs to be unserialized again
7373
if (is_string($unserialized)) {
7474
$unserialized = unserialize($unserialized);
7575
}
76-
76+
7777
return is_array($unserialized) ? $unserialized : array();
7878
}
7979
}

0 commit comments

Comments
 (0)