Loading .devcontainer/Dockerfile +1 −1 Original line number Diff line number Diff line FROM php:latest FROM php:7.2-fpm COPY --from=composer /usr/bin/composer /usr/bin/composer Loading Dockerfile +1 −1 Original line number Diff line number Diff line FROM php:latest FROM php:7.2-fpm COPY . /castopod WORKDIR /castopod Loading app/Config/Routes.php +1 −1 Original line number Diff line number Diff line Loading @@ -287,7 +287,7 @@ $routes->group( $routes->get('forgot', 'AuthController::forgotPassword', [ 'as' => 'forgot', ]); $routes->post('forgot', 'Auth::attemptForgot'); $routes->post('forgot', 'AuthController::attemptForgot'); $routes->get('reset-password', 'AuthController::resetPassword', [ 'as' => 'reset-password', ]); Loading app/Controllers/Admin/Contributor.php +9 −2 Original line number Diff line number Diff line Loading @@ -14,8 +14,15 @@ use App\Models\UserModel; class Contributor extends BaseController { protected \App\Entities\Podcast $podcast; protected ?\App\Entities\User $user; /** * @var \App\Entities\Podcast */ protected $podcast; /** * @var \App\Entities\User|null */ protected $user; public function _remap($method, ...$params) { Loading app/Controllers/Admin/Episode.php +9 −2 Original line number Diff line number Diff line Loading @@ -13,8 +13,15 @@ use App\Models\PodcastModel; class Episode extends BaseController { protected \App\Entities\Podcast $podcast; protected ?\App\Entities\Episode $episode; /** * @var \App\Entities\Podcast */ protected $podcast; /** * @var \App\Entities\Episode|null */ protected $episode; public function _remap($method, ...$params) { Loading Loading
.devcontainer/Dockerfile +1 −1 Original line number Diff line number Diff line FROM php:latest FROM php:7.2-fpm COPY --from=composer /usr/bin/composer /usr/bin/composer Loading
Dockerfile +1 −1 Original line number Diff line number Diff line FROM php:latest FROM php:7.2-fpm COPY . /castopod WORKDIR /castopod Loading
app/Config/Routes.php +1 −1 Original line number Diff line number Diff line Loading @@ -287,7 +287,7 @@ $routes->group( $routes->get('forgot', 'AuthController::forgotPassword', [ 'as' => 'forgot', ]); $routes->post('forgot', 'Auth::attemptForgot'); $routes->post('forgot', 'AuthController::attemptForgot'); $routes->get('reset-password', 'AuthController::resetPassword', [ 'as' => 'reset-password', ]); Loading
app/Controllers/Admin/Contributor.php +9 −2 Original line number Diff line number Diff line Loading @@ -14,8 +14,15 @@ use App\Models\UserModel; class Contributor extends BaseController { protected \App\Entities\Podcast $podcast; protected ?\App\Entities\User $user; /** * @var \App\Entities\Podcast */ protected $podcast; /** * @var \App\Entities\User|null */ protected $user; public function _remap($method, ...$params) { Loading
app/Controllers/Admin/Episode.php +9 −2 Original line number Diff line number Diff line Loading @@ -13,8 +13,15 @@ use App\Models\PodcastModel; class Episode extends BaseController { protected \App\Entities\Podcast $podcast; protected ?\App\Entities\Episode $episode; /** * @var \App\Entities\Podcast */ protected $podcast; /** * @var \App\Entities\Episode|null */ protected $episode; public function _remap($method, ...$params) { Loading