This commit is contained in:
DariusIII
2023-03-10 21:55:40 +01:00
parent a04417fd3a
commit b31317046f
2 changed files with 0 additions and 33 deletions
-31
View File
@@ -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
-2
View File
@@ -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)