Files
mtdb_movie/app/Services/AppBootstrapData.php
maher 703f50a09d
Some checks failed
Build / run (push) Has been cancelled
first commit
2025-10-29 11:42:25 +01: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;
}
}