2021-01-21 20:59:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Lean\Console;
|
|
|
|
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
|
2023-11-04 00:21:27 +00:00
|
|
|
#[\Deprecated]
|
2021-01-21 20:59:00 +00:00
|
|
|
abstract class Lean
|
|
|
|
{
|
2023-11-04 00:21:27 +00:00
|
|
|
#[\Deprecated]
|
2021-01-21 20:59:00 +00:00
|
|
|
public static function definitions() : array
|
|
|
|
{
|
|
|
|
return require(dirname(__DIR__) . "/meta/definitions/software.php");
|
|
|
|
}
|
|
|
|
}
|