Repository URL to install this package:
|
Version:
6.3.0 ▾
|
<?php
/**
* Created by IntelliJ IDEA.
* User: martino
* Date: 27/03/17
* Time: 20:45
*/
namespace DigitalAscetic\FileBundle\Entity\File;
interface FileEntity
{
/**
* @return ManagedFile
*/
public function getFile(): ManagedFile;
/**
* @return string
*/
public function getCanonicalPath(): string;
/**
* @return array
*/
public function getRelatedPaths(): array;
/**
* @return boolean
*/
public function isSyncWithCanonicalPath(): bool;
}