class File extends Facade

Properties

static protected $app

The application instance being facaded.

from  Facade
static protected array $resolvedInstance

The resolved object instances.

from  Facade
static protected bool $cached

Indicates if the resolved instance should be cached.

from  Facade

Methods

static void
resolved(Closure $callback)

Run a Closure when the facade has been resolved.

from  Facade
static 
spy()

Convert the facade into a Mockery spy.

from  Facade
static 
partialMock()

Initiate a partial mock on the facade.

from  Facade
static 
shouldReceive()

Initiate a mock expectation on the facade.

from  Facade
static 
expects()

Initiate a mock expectation on the facade.

from  Facade
static 
createFreshMockInstance()

Create a fresh mock instance for the given class.

from  Facade
static 
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 
swap(mixed $instance)

Hotswap the underlying instance behind the facade.

from  Facade
static bool
isFake()

Determines whether a "fake" has been set as the facade instance.

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(string $name)

Resolve the facade root instance from the container.

from  Facade
static void
clearResolvedInstance(string|null $name = null)

Clear a resolved facade instance.

from  Facade
static void
clearResolvedInstances()

Clear all of the resolved instances.

from  Facade
static Collection
defaultAliases()

Get the application default aliases.

from  Facade
static 
getFacadeApplication()

Get the application instance behind the facade.

from  Facade
static void
setFacadeApplication(mixed $app)

Set the application instance.

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

Handle dynamic, static calls to the object.

from  Facade
static void
replace(string $path, string $content, int|null $mode = null)

Write the contents of a file, replacing it atomically if it already exists.

static bool
exists(string $path)

No description

static bool
missing(string $path)

No description

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

No description

static mixed
json(string $path, int $flags = '0', bool $lock = 'false')

No description

static string
sharedGet(string $path)

No description

static mixed
getRequire(string $path, array $data = '[]')

No description

static mixed
requireOnce(string $path, array $data = '[]')

No description

static LazyCollection
lines(string $path)

No description

static string|false
hash(string $path, string $algorithm = '\'xxh128\'')

No description

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

No description

static void
replaceInFile(array|string $search, array|string $replace, string $path)

No description

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

No description

static int|false
append(string $path, string $data, bool $lock = 'false')

No description

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

No description

static bool
delete(array|string $paths)

No description

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

No description

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

No description

static bool|null
link(string $target, string $link)

No description

static void
relativeLink(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|null
guessExtension(string $path)

No description

static string|false
type(string $path)

No description

static string|false
mimeType(string $path)

No description

static int|false
size(string $path)

No description

static int|false
lastModified(string $path)

No description

static bool
isDirectory(string $directory)

No description

static bool
isEmptyDirectory(string $directory, bool $ignoreDotFiles = 'false')

No description

static bool
isReadable(string $path)

No description

static bool
isWritable(string $path)

No description

static bool
hasSameHash(string $firstFile, string $secondFile)

No description

static bool
isFile(string $file)

No description

static array|false
glob(string $pattern, int $flags = '0')

No description

static SplFileInfo[]
files(array|string $directory, bool $hidden = 'false', array|string|int $depth = '0')

No description

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

No description

static array
directories(array|string $directory, array|string|int $depth = '0')

No description

static array
allDirectories(array|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

static void
clearStatCache(string $path)

No description

static Filesystem|mixed
when(Closure|mixed $value = 'null', null|callable $callback = 'null', null|callable $default = 'null')

No description

static Filesystem|mixed
unless(Closure|mixed $value = 'null', null|callable $callback = 'null', null|callable $default = 'null')

No description

static void
macro(string $name, callable|object $macro)

No description

static void
mixin(object $mixin, bool $replace = 'true')

No description

static bool
hasMacro(string $name)

No description

static void
flushMacros()

No description

Details

in Facade at line 55
static void resolved(Closure $callback)

Run a Closure when the facade has been resolved.

Boot-only. The callback is registered on the worker-global container and runs for every subsequent resolution of the facade accessor.

Parameters

Closure $callback

Return Value

void

in Facade at line 71
static spy()

Convert the facade into a Mockery spy.

in Facade at line 89
static partialMock()

Initiate a partial mock on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 105
static shouldReceive()

Initiate a mock expectation on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 121
static expects()

Initiate a mock expectation on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 135
static protected createFreshMockInstance()

Create a fresh mock instance for the given class.

in Facade at line 147
static protected createMock()

Create a fresh mock instance for the given class.

in Facade at line 157
static protected bool isMock()

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

Return Value

bool

in Facade at line 168
static protected string|null getMockableClass()

Get the mockable class for the bound instance.

Return Value

string|null

in Facade at line 184
static swap(mixed $instance)

Hotswap the underlying instance behind the facade.

Tests only. Replaces the worker-wide resolved facade instance and container binding; runtime use races across coroutines and changes every subsequent facade call.

Parameters

mixed $instance

in Facade at line 196
static bool isFake()

Determines whether a "fake" has been set as the facade instance.

Return Value

bool

in Facade at line 207
static mixed getFacadeRoot()

Get the root object behind the facade.

Return Value

mixed

at line 76
static protected string getFacadeAccessor()

Get the registered name of the component.

Return Value

string

in Facade at line 223
static protected mixed resolveFacadeInstance(string $name)

Resolve the facade root instance from the container.

Parameters

string $name

Return Value

mixed

in Facade at line 246
static void clearResolvedInstance(string|null $name = null)

Clear a resolved facade instance.

Boot or tests only. Clears a worker-wide facade cache entry; concurrent coroutines may still hold the previous resolved instance.

Parameters

string|null $name

Return Value

void

in Facade at line 257
static void clearResolvedInstances()

Clear all of the resolved instances.

Boot or tests only. Clears the worker-wide facade cache; concurrent coroutines may still hold previously resolved instances.

Return Value

void

in Facade at line 265
static Collection defaultAliases()

Get the application default aliases.

Return Value

Collection

in Facade at line 324
static getFacadeApplication()

Get the application instance behind the facade.

in Facade at line 337
static void setFacadeApplication(mixed $app)

Set the application instance.

Tests only. Replaces the worker-wide facade application reference; runtime use races across coroutines and breaks every facade lookup.

Parameters

mixed $app

Return Value

void

in Facade at line 347
static __callStatic(string $method, array $args)

Handle dynamic, static calls to the object.

Parameters

string $method
array $args

Exceptions

RuntimeException

at line 71
static void replace(string $path, string $content, int|null $mode = null)

Write the contents of a file, replacing it atomically if it already exists.

Parameters

string $path
string $content
int|null $mode

Return Value

void

at line 66
static bool exists(string $path)

No description

Parameters

string $path

Return Value

bool

at line 66
static bool missing(string $path)

No description

Parameters

string $path

Return Value

bool

at line 66
static string get(string $path, bool $lock = 'false')

No description

Parameters

string $path
bool $lock

Return Value

string

at line 66
static mixed json(string $path, int $flags = '0', bool $lock = 'false')

No description

Parameters

string $path
int $flags
bool $lock

Return Value

mixed

at line 66
static string sharedGet(string $path)

No description

Parameters

string $path

Return Value

string

at line 66
static mixed getRequire(string $path, array $data = '[]')

No description

Parameters

string $path
array $data

Return Value

mixed

at line 66
static mixed requireOnce(string $path, array $data = '[]')

No description

Parameters

string $path
array $data

Return Value

mixed

at line 66
static LazyCollection lines(string $path)

No description

Parameters

string $path

Return Value

LazyCollection

at line 66
static string|false hash(string $path, string $algorithm = '\'xxh128\'')

No description

Parameters

string $path
string $algorithm

Return Value

string|false

at line 66
static int|false put(string $path, resource|string $contents, bool $lock = 'false')

No description

Parameters

string $path
resource|string $contents
bool $lock

Return Value

int|false

at line 66
static void replaceInFile(array|string $search, array|string $replace, string $path)

No description

Parameters

array|string $search
array|string $replace
string $path

Return Value

void

at line 66
static int|false prepend(string $path, string $data)

No description

Parameters

string $path
string $data

Return Value

int|false

at line 66
static int|false append(string $path, string $data, bool $lock = 'false')

No description

Parameters

string $path
string $data
bool $lock

Return Value

int|false

at line 66
static string|bool chmod(string $path, int|null $mode = 'null')

No description

Parameters

string $path
int|null $mode

Return Value

string|bool

at line 66
static bool delete(array|string $paths)

No description

Parameters

array|string $paths

Return Value

bool

at line 66
static bool move(string $path, string $target)

No description

Parameters

string $path
string $target

Return Value

bool

at line 66
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

bool|null

No description

Parameters

string $target
string $link

Return Value

void

at line 66
static string name(string $path)

No description

Parameters

string $path

Return Value

string

at line 66
static string basename(string $path)

No description

Parameters

string $path

Return Value

string

at line 66
static string dirname(string $path)

No description

Parameters

string $path

Return Value

string

at line 66
static string extension(string $path)

No description

Parameters

string $path

Return Value

string

at line 66
static string|null guessExtension(string $path)

No description

Parameters

string $path

Return Value

string|null

at line 66
static string|false type(string $path)

No description

Parameters

string $path

Return Value

string|false

at line 66
static string|false mimeType(string $path)

No description

Parameters

string $path

Return Value

string|false

at line 66
static int|false size(string $path)

No description

Parameters

string $path

Return Value

int|false

at line 66
static int|false lastModified(string $path)

No description

Parameters

string $path

Return Value

int|false

at line 66
static bool isDirectory(string $directory)

No description

Parameters

string $directory

Return Value

bool

at line 66
static bool isEmptyDirectory(string $directory, bool $ignoreDotFiles = 'false')

No description

Parameters

string $directory
bool $ignoreDotFiles

Return Value

bool

at line 66
static bool isReadable(string $path)

No description

Parameters

string $path

Return Value

bool

at line 66
static bool isWritable(string $path)

No description

Parameters

string $path

Return Value

bool

at line 66
static bool hasSameHash(string $firstFile, string $secondFile)

No description

Parameters

string $firstFile
string $secondFile

Return Value

bool

at line 66
static bool isFile(string $file)

No description

Parameters

string $file

Return Value

bool

at line 66
static array|false glob(string $pattern, int $flags = '0')

No description

Parameters

string $pattern
int $flags

Return Value

array|false

at line 66
static SplFileInfo[] files(array|string $directory, bool $hidden = 'false', array|string|int $depth = '0')

No description

Parameters

array|string $directory
bool $hidden
array|string|int $depth

Return Value

SplFileInfo[]

at line 66
static SplFileInfo[] allFiles(array|string $directory, bool $hidden = 'false')

No description

Parameters

array|string $directory
bool $hidden

Return Value

SplFileInfo[]

at line 66
static array directories(array|string $directory, array|string|int $depth = '0')

No description

Parameters

array|string $directory
array|string|int $depth

Return Value

array

at line 66
static array allDirectories(array|string $directory)

No description

Parameters

array|string $directory

Return Value

array

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

No description

Parameters

string $path
int $mode
bool $recursive

Return Value

void

at line 66
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

at line 66
static bool moveDirectory(string $from, string $to, bool $overwrite = 'false')

No description

Parameters

string $from
string $to
bool $overwrite

Return Value

bool

at line 66
static bool copyDirectory(string $directory, string $destination, int|null $options = 'null')

No description

Parameters

string $directory
string $destination
int|null $options

Return Value

bool

at line 66
static bool deleteDirectory(string $directory, bool $preserve = 'false')

No description

Parameters

string $directory
bool $preserve

Return Value

bool

at line 66
static bool deleteDirectories(string $directory)

No description

Parameters

string $directory

Return Value

bool

at line 66
static bool cleanDirectory(string $directory)

No description

Parameters

string $directory

Return Value

bool

at line 66
static void clearStatCache(string $path)

No description

Parameters

string $path

Return Value

void

at line 66
static Filesystem|mixed when(Closure|mixed $value = 'null', null|callable $callback = 'null', null|callable $default = 'null')

No description

Parameters

Closure|mixed $value
null|callable $callback
null|callable $default

Return Value

Filesystem|mixed

at line 66
static Filesystem|mixed unless(Closure|mixed $value = 'null', null|callable $callback = 'null', null|callable $default = 'null')

No description

Parameters

Closure|mixed $value
null|callable $callback
null|callable $default

Return Value

Filesystem|mixed

at line 66
static void macro(string $name, callable|object $macro)

No description

Parameters

string $name
callable|object $macro

Return Value

void

at line 66
static void mixin(object $mixin, bool $replace = 'true')

No description

Parameters

object $mixin
bool $replace

Return Value

void

at line 66
static bool hasMacro(string $name)

No description

Parameters

string $name

Return Value

bool

at line 66
static void flushMacros()

No description

Return Value

void