class File extends Facade (View source)

Properties

static protected Application $app

The application instance being facaded.

from  Facade
static protected array $resolvedInstance

The resolved object instances.

from  Facade

Methods

static void
resolved(Closure $callback)

Run a Closure when the facade has been resolved.

from  Facade
static MockInterface
spy()

Convert the facade into a Mockery spy.

from  Facade
static MockInterface
partialMock()

Initiate a partial mock on the facade.

from  Facade
static Expectation
shouldReceive()

Initiate a mock expectation on the facade.

from  Facade
static MockInterface
createFreshMockInstance()

Create a fresh mock instance for the given class.

from  Facade
static MockInterface
createMock()

Create a fresh mock instance for the given class.

from  Facade
static bool
isMock()

Determines whether a mock is set as the instance of the facade.

from  Facade
static string|null
getMockableClass()

Get the mockable class for the bound instance.

from  Facade
static void
swap(mixed $instance)

Hotswap the underlying instance behind the facade.

from  Facade
static mixed
getFacadeRoot()

Get the root object behind the facade.

from  Facade
static string
getFacadeAccessor()

Get the registered name of the component.

static mixed
resolveFacadeInstance(object|string $name)

Resolve the facade root instance from the container.

from  Facade
static void
clearResolvedInstance(string $name)

Clear a resolved facade instance.

from  Facade
static void
clearResolvedInstances()

Clear all of the resolved instances.

from  Facade
static Application
getFacadeApplication()

Get the application instance behind the facade.

from  Facade
static void
setFacadeApplication(Application $app)

Set the application instance.

from  Facade
static mixed
__callStatic(string $method, array $args)

Handle dynamic, static calls to the object.

from  Facade
static bool
exists(string $path)

No description

static string
get(string $path, bool $lock = false)

No description

static string
sharedGet(string $path)

No description

static mixed
getRequire(string $path)

No description

static mixed
requireOnce(string $file)

No description

static string
hash(string $path)

No description

static int|bool
put(string $path, string $contents, bool $lock = false)

No description

static void
replace(string $path, string $content)

No description

static int
prepend(string $path, string $data)

No description

static int
append(string $path, string $data)

No description

static mixed
chmod(string $path, int|null $mode = null)

No description

static bool
delete(string|array $paths)

No description

static bool
move(string $path, string $target)

No description

static bool
copy(string $path, string $target)

No description

static void
link(string $target, string $link)

No description

static string
name(string $path)

No description

static string
basename(string $path)

No description

static string
dirname(string $path)

No description

static string
extension(string $path)

No description

static string
type(string $path)

No description

static string|false
mimeType(string $path)

No description

static int
size(string $path)

No description

static int
lastModified(string $path)

No description

static bool
isDirectory(string $directory)

No description

static bool
isReadable(string $path)

No description

static bool
isWritable(string $path)

No description

static bool
isFile(string $file)

No description

static array
glob(string $pattern, int $flags)

No description

static SplFileInfo[]
files(string $directory, bool $hidden = false)

No description

static SplFileInfo[]
allFiles(string $directory, bool $hidden = false)

No description

static array
directories(string $directory)

No description

static void
ensureDirectoryExists(string $path, int $mode = 0755, bool $recursive = true)

No description

static bool
makeDirectory(string $path, int $mode = 0755, bool $recursive = false, bool $force = false)

No description

static bool
moveDirectory(string $from, string $to, bool $overwrite = false)

No description

static bool
copyDirectory(string $directory, string $destination, int|null $options = null)

No description

static bool
deleteDirectory(string $directory, bool $preserve = false)

No description

static bool
deleteDirectories(string $directory)

No description

static bool
cleanDirectory(string $directory)

No description

Details

static void resolved(Closure $callback)

Run a Closure when the facade has been resolved.

Parameters

Closure $callback

Return Value

void

static MockInterface spy()

Convert the facade into a Mockery spy.

Return Value

MockInterface

static MockInterface partialMock()

Initiate a partial mock on the facade.

Return Value

MockInterface

static Expectation shouldReceive()

Initiate a mock expectation on the facade.

Return Value

Expectation

static protected MockInterface createFreshMockInstance()

Create a fresh mock instance for the given class.

Return Value

MockInterface

static protected MockInterface createMock()

Create a fresh mock instance for the given class.

Return Value

MockInterface

static protected bool isMock()

Determines whether a mock is set as the instance of the facade.

Return Value

bool

static protected string|null getMockableClass()

Get the mockable class for the bound instance.

Return Value

string|null

static void swap(mixed $instance)

Hotswap the underlying instance behind the facade.

Parameters

mixed $instance

Return Value

void

static mixed getFacadeRoot()

Get the root object behind the facade.

Return Value

mixed

static protected string getFacadeAccessor()

Get the registered name of the component.

Return Value

string

static protected mixed resolveFacadeInstance(object|string $name)

Resolve the facade root instance from the container.

Parameters

object|string $name

Return Value

mixed

static void clearResolvedInstance(string $name)

Clear a resolved facade instance.

Parameters

string $name

Return Value

void

static void clearResolvedInstances()

Clear all of the resolved instances.

Return Value

void

static Application getFacadeApplication()

Get the application instance behind the facade.

Return Value

Application

static void setFacadeApplication(Application $app)

Set the application instance.

Parameters

Application $app

Return Value

void

static mixed __callStatic(string $method, array $args)

Handle dynamic, static calls to the object.

Parameters

string $method
array $args

Return Value

mixed

Exceptions

RuntimeException

static bool exists(string $path)

No description

Parameters

string $path

Return Value

bool

static string get(string $path, bool $lock = false)

No description

Parameters

string $path
bool $lock

Return Value

string

static string sharedGet(string $path)

No description

Parameters

string $path

Return Value

string

static mixed getRequire(string $path)

No description

Parameters

string $path

Return Value

mixed

static mixed requireOnce(string $file)

No description

Parameters

string $file

Return Value

mixed

static string hash(string $path)

No description

Parameters

string $path

Return Value

string

static int|bool put(string $path, string $contents, bool $lock = false)

No description

Parameters

string $path
string $contents
bool $lock

Return Value

int|bool

static void replace(string $path, string $content)

No description

Parameters

string $path
string $content

Return Value

void

static int prepend(string $path, string $data)

No description

Parameters

string $path
string $data

Return Value

int

static int append(string $path, string $data)

No description

Parameters

string $path
string $data

Return Value

int

static mixed chmod(string $path, int|null $mode = null)

No description

Parameters

string $path
int|null $mode

Return Value

mixed

static bool delete(string|array $paths)

No description

Parameters

string|array $paths

Return Value

bool

static bool move(string $path, string $target)

No description

Parameters

string $path
string $target

Return Value

bool

static bool copy(string $path, string $target)

No description

Parameters

string $path
string $target

Return Value

bool

No description

Parameters

string $target
string $link

Return Value

void

static string name(string $path)

No description

Parameters

string $path

Return Value

string

static string basename(string $path)

No description

Parameters

string $path

Return Value

string

static string dirname(string $path)

No description

Parameters

string $path

Return Value

string

static string extension(string $path)

No description

Parameters

string $path

Return Value

string

static string type(string $path)

No description

Parameters

string $path

Return Value

string

static string|false mimeType(string $path)

No description

Parameters

string $path

Return Value

string|false

static int size(string $path)

No description

Parameters

string $path

Return Value

int

static int lastModified(string $path)

No description

Parameters

string $path

Return Value

int

static bool isDirectory(string $directory)

No description

Parameters

string $directory

Return Value

bool

static bool isReadable(string $path)

No description

Parameters

string $path

Return Value

bool

static bool isWritable(string $path)

No description

Parameters

string $path

Return Value

bool

static bool isFile(string $file)

No description

Parameters

string $file

Return Value

bool

static array glob(string $pattern, int $flags)

No description

Parameters

string $pattern
int $flags

Return Value

array

static SplFileInfo[] files(string $directory, bool $hidden = false)

No description

Parameters

string $directory
bool $hidden

Return Value

SplFileInfo[]

static SplFileInfo[] allFiles(string $directory, bool $hidden = false)

No description

Parameters

string $directory
bool $hidden

Return Value

SplFileInfo[]

static array directories(string $directory)

No description

Parameters

string $directory

Return Value

array

static void ensureDirectoryExists(string $path, int $mode = 0755, bool $recursive = true)

No description

Parameters

string $path
int $mode
bool $recursive

Return Value

void

static bool makeDirectory(string $path, int $mode = 0755, bool $recursive = false, bool $force = false)

No description

Parameters

string $path
int $mode
bool $recursive
bool $force

Return Value

bool

static bool moveDirectory(string $from, string $to, bool $overwrite = false)

No description

Parameters

string $from
string $to
bool $overwrite

Return Value

bool

static bool copyDirectory(string $directory, string $destination, int|null $options = null)

No description

Parameters

string $directory
string $destination
int|null $options

Return Value

bool

static bool deleteDirectory(string $directory, bool $preserve = false)

No description

Parameters

string $directory
bool $preserve

Return Value

bool

static bool deleteDirectories(string $directory)

No description

Parameters

string $directory

Return Value

bool

static bool cleanDirectory(string $directory)

No description

Parameters

string $directory

Return Value

bool