mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
18 lines
426 B
PHP
18 lines
426 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Foundation\Application as IlluminateApplication;
|
|
|
|
/**
|
|
* Extends \Illuminate\Foundation\Application to override some defaults.
|
|
*/
|
|
class Application extends IlluminateApplication
|
|
{
|
|
/**
|
|
* Current Koel version. Must start with a v, and is synced with git tags/releases.
|
|
*
|
|
* @see https://github.com/phanan/koel/releases
|
|
*/
|
|
public const KOEL_VERSION = 'v4.4.0';
|
|
}
|