From 67c2bb53e0c7cbe0af072bddcb885a8db6d5aa12 Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Sat, 16 Mar 2024 23:09:32 -0400 Subject: [PATCH] Remove unused repository interface --- app/Repositories/Repository.php | 102 -------------------------------- 1 file changed, 102 deletions(-) delete mode 100644 app/Repositories/Repository.php diff --git a/app/Repositories/Repository.php b/app/Repositories/Repository.php deleted file mode 100644 index 3a3573022..000000000 --- a/app/Repositories/Repository.php +++ /dev/null @@ -1,102 +0,0 @@ -initializeModel($this->model()); - } - - /** - * Return the model backing this repository. - */ - abstract public function model(): string; - - /** - * Return the model being used for this repository. - */ - public function getModel(): Model - { - return $this->model; - } - - /** - * Setup column selection functionality. - * - * @param array|string $columns - */ - public function setColumns($columns = ['*']): self - { - $clone = clone $this; - $clone->columns = is_array($columns) ? $columns : func_get_args(); - - return $clone; - } - - /** - * Return the columns to be selected in the repository call. - */ - public function getColumns(): array - { - return $this->columns; - } - - /** - * Stop repository update functions from returning a fresh - * model when changes are committed. - */ - public function withoutFreshModel(): self - { - return $this->setFreshModel(false); - } - - /** - * Return a fresh model with a repository updates a model. - */ - public function withFreshModel(): self - { - return $this->setFreshModel(); - } - - /** - * Set whether the repository should return a fresh model - * when changes are committed. - */ - public function setFreshModel(bool $fresh = true): self - { - $clone = clone $this; - $clone->withFresh = $fresh; - - return $clone; - } - - /** - * Take the provided model and make it accessible to the rest of the repository. - */ - protected function initializeModel(string ...$model): mixed - { - switch (count($model)) { - case 1: - return $this->model = $this->app->make($model[0]); - case 2: - return $this->model = call_user_func([$this->app->make($model[0]), $model[1]]); - default: - throw new \InvalidArgumentException('Model must be a FQDN or an array with a count of two.'); - } - } -}