for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EventEspresso\core\domain\values;
use EventEspresso\core\exceptions\InvalidDataTypeException;
use EventEspresso\core\exceptions\InvalidFilePathException;
defined('EVENT_ESPRESSO_VERSION') || exit;
/**
* Class FilePath
* Value Object representing a valid readable filepath
*
* @package EventEspresso\core\domain\values
* @author Brent Christensen
* @since 4.9.51
*/
class FilePath
{
* @var string file_path
private $file_path;
* FilePath constructor.
* @param string $file_path
* @throws InvalidDataTypeException
* @throws InvalidFilePathException
public function __construct($file_path)
if (! is_string($file_path)) {
throw new InvalidDataTypeException(
'$file_path',
$file_path,
'string'
);
}
if (! is_readable($file_path)) {
throw new InvalidFilePathException($file_path);
$this->file_path = $file_path;
* @return string
public function __toString()
return $this->file_path;