mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-10 16:25:47 +00:00

- add james-heinrich/getid3 library as a dependency to composer.json - update DEPENDENCIES.md file - fix episodes table migration script - add js devDependencies: prettier, @prettier/plugin-php and lint-staged to automatically format staged files before commit - reformat all files to the prettier format - refactor code by separating some logic as helper functions - overwrite existing files when uploading new files with the same name fixes #1
30 lines
938 B
PHP
30 lines
938 B
PHP
<?php namespace Config;
|
|
|
|
use CodeIgniter\Config\Services as CoreServices;
|
|
|
|
require_once SYSTEMPATH . 'Config/Services.php';
|
|
|
|
/**
|
|
* Services Configuration file.
|
|
*
|
|
* Services are simply other classes/libraries that the system uses
|
|
* to do its job. This is used by CodeIgniter to allow the core of the
|
|
* framework to be swapped out easily without affecting the usage within
|
|
* the rest of your application.
|
|
*
|
|
* This file holds any application-specific services, or service overrides
|
|
* that you might need. An example has been included with the general
|
|
* method format you should use for your service methods. For more examples,
|
|
* see the core Services file at system/Config/Services.php.
|
|
*/
|
|
class Services extends CoreServices
|
|
{
|
|
// public static function example($getShared = true)
|
|
// {
|
|
// if ($getShared) {
|
|
// return static::getSharedInstance('example');
|
|
// }
|
|
// return new \CodeIgniter\Example();
|
|
// }
|
|
}
|