PhpFile
final class PhpFile
Instance of PHP file.
Generates:
- opening tag (<?php)
- doc comments
- one or more namespaces
Methods
Adds a class to the file. If it already exists, throws an exception.
Adds an interface to the file. If it already exists, throws an exception.
Adds a trait to the file. If it already exists, throws an exception.
Adds a function to the file. If it already exists, throws an exception.
Adds a namespace to the file. If it already exists, it returns the existing one.
Removes the namespace from the file.
No description
No description
No description
Adds a use statement to the file, to the global namespace.
Adds declare(strict_types=1) to output.
No description
No description
Details
at line 30
static PhpFile
fromCode(string $code)
No description
at line 40
ClassType
addClass(string $name)
Adds a class to the file. If it already exists, throws an exception.
As a parameter, pass the full name with namespace.
at line 52
InterfaceType
addInterface(string $name)
Adds an interface to the file. If it already exists, throws an exception.
As a parameter, pass the full name with namespace.
at line 64
TraitType
addTrait(string $name)
Adds a trait to the file. If it already exists, throws an exception.
As a parameter, pass the full name with namespace.
at line 76
EnumType
addEnum(string $name)
Adds an enum to the file. If it already exists, throws an exception.
As a parameter, pass the full name with namespace.
at line 88
GlobalFunction
addFunction(string $name)
Adds a function to the file. If it already exists, throws an exception.
As a parameter, pass the full name with namespace.
at line 99
PhpNamespace
addNamespace(PhpNamespace $namespace)
Adds a namespace to the file. If it already exists, it returns the existing one.
at line 116
PhpFile
removeNamespace(PhpNamespace $namespace)
Removes the namespace from the file.
at line 125
array
getNamespaces()
No description
at line 132
array
getClasses()
No description
at line 147
array
getFunctions()
No description
at line 164
PhpFile
addUse(string $name, string|null $alias = null, string $of = PhpNamespace::NameNormal)
Adds a use statement to the file, to the global namespace.
at line 174
PhpFile
setStrictTypes(bool $state = true)
Adds declare(strict_types=1) to output.
at line 181
bool
hasStrictTypes()
No description
at line 187
string
__toString()
No description