Inpsyde\MultilingualPress\Asset\AssetLocation::__construct PHP Method

__construct() public method

Constructor. Sets up the properties.
Since: 3.0.0
public __construct ( string $file, string $path, string $url )
$file string The relative file name (or path).
$path string The local path to the directory containing the file.
$url string The public URL for the directory containing the file.
    public function __construct($file, $path, $url)
    {
        $this->file = (string) $file;
        $this->path = (string) $path;
        $this->url = (string) $url;
    }