Files
mtdb_movie/app/Services/AppBootstrapData.php
maher 511fad8199
Build / run (push) Has been cancelled
Initial commit
2026-05-14 13:42:10 +02:00

16 lines
313 B
PHP
Executable File

<?php namespace App\Services;
use Common\Core\Bootstrap\BaseBootstrapData;
class AppBootstrapData extends BaseBootstrapData
{
public function init(): self
{
parent::init();
$this->data['settings']['tmdb_is_setup'] = !is_null(config('services.tmdb.key'));
return $this;
}
}