lean-console/src/Lean.php

15 lines
266 B
PHP
Raw Normal View History

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