mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-19 05:14:52 +08:00
29 lines
432 B
PHP
29 lines
432 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace SPC\util;
|
||
|
|
|
||
|
|
trait GlobalValueTrait
|
||
|
|
{
|
||
|
|
public function getBinDir(): string
|
||
|
|
{
|
||
|
|
return BUILD_BIN_PATH;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function getIncludeDir(): string
|
||
|
|
{
|
||
|
|
return BUILD_INCLUDE_PATH;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function getBuildRootPath(): string
|
||
|
|
{
|
||
|
|
return BUILD_ROOT_PATH;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function getLibDir(): string
|
||
|
|
{
|
||
|
|
return BUILD_LIB_PATH;
|
||
|
|
}
|
||
|
|
}
|