You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
415 B
PHP
22 lines
415 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Arokettu\Path;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
abstract class AbstractAbsolutePath extends AbstractPath implements AbsolutePathInterface
|
|
{
|
|
/**
|
|
* @param static|string $path
|
|
* @param bool $strict
|
|
* @return static
|
|
*/
|
|
public function makeRelative($path, bool $strict = false): self
|
|
{
|
|
throw new \BadMethodCallException('not implemented');
|
|
}
|
|
}
|