13 lines
No EOL
345 B
PHP
13 lines
No EOL
345 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace GamesShop;
|
|
|
|
final class Paths
|
|
{
|
|
public const string ROOT_PATH = __DIR__ . '/../..';
|
|
public const string PUBLIC_PATH = self::ROOT_PATH . '/public';
|
|
public const string SOURCE_PATH = self::ROOT_PATH . '/src';
|
|
|
|
public const string PHP_SOURCE_PATH = self::SOURCE_PATH . '/php';
|
|
} |