From b31317046f0134c99840009167b236e140ec3d72 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Fri, 10 Mar 2023 21:55:40 +0100 Subject: [PATCH] CS fixes --- Blacklight/Backfill.php | 31 ---------------------------- Blacklight/build/ComposerScripts.php | 2 -- 2 files changed, 33 deletions(-) diff --git a/Blacklight/Backfill.php b/Blacklight/Backfill.php index b36f7981d..36258dcfc 100755 --- a/Blacklight/Backfill.php +++ b/Blacklight/Backfill.php @@ -12,59 +12,37 @@ use Illuminate\Support\Facades\DB; */ class Backfill { - /** - * @var Binaries - */ protected Binaries $_binaries; - /** - * @var NNTP - */ protected NNTP $_nntp; /** * Should we use compression for headers? - * - * @var bool */ protected bool $_compressedHeaders; /** * Log and or echo debug. - * - * @var bool */ protected bool $_debug = false; /** * Echo to cli? - * - * @var bool */ protected bool $_echoCLI; /** * How far back should we go on safe back fill? - * - * @var string */ protected string $_safeBackFillDate; - /** - * @var string - */ protected string $_safePartRepair; /** * Should we disable the group if we have backfilled far enough? - * - * @var bool */ protected bool $_disableBackfillGroup; - /** - * @var ColorCLI - */ protected ColorCLI $colorCli; /** @@ -104,10 +82,6 @@ class Backfill } /** - * @param string $groupName - * @param int|string $articles - * @param string $type - * * @throws \Throwable */ public function backfillAllGroups(string $groupName = '', int|string $articles = '', string $type = ''): void @@ -167,9 +141,6 @@ class Backfill /** * Backfill single group. * - * @param array $groupArr - * @param int $left - * @param int|string $articles * * @throws \Throwable */ @@ -333,8 +304,6 @@ class Backfill } /** - * @param int|string $articles - * * @throws \Throwable */ public function safeBackfill(int|string $articles = ''): void diff --git a/Blacklight/build/ComposerScripts.php b/Blacklight/build/ComposerScripts.php index e143396ad..af733cf6b 100644 --- a/Blacklight/build/ComposerScripts.php +++ b/Blacklight/build/ComposerScripts.php @@ -28,7 +28,6 @@ class ComposerScripts /** * Handle the post-install Composer event. * - * @param \Composer\Script\Event $event * @return void */ public static function postInstall(Event $event) @@ -41,7 +40,6 @@ class ComposerScripts /** * Handle the post-update Composer event. * - * @param \Composer\Script\Event $event * @return void */ public static function postUpdate(Event $event)