Dutch PHP Conference 2025 - Call For Papers

The Componere\Patch class

(Componere 2 >= 2.1.0)

Вступ

The Patch class allows the programmer to change the type of an instance at runtime without registering a new Definition

When a Patch is destroyed it is reverted, so that instances that were patched during the lifetime of the Patch are restored to their formal type.

Короткий огляд класу

final class Componere\Patch extends Componere\Abstract\Definition {
/* Constructors */
public __construct(object $instance)
public __construct(object $instance, array $interfaces)
/* Методи */
public apply(): void
public revert(): void
public isApplied(): bool
public derive(object $instance): Patch
public getClosure(string $name): Closure
public getClosures(): array
/* Успадковані методи */
}

Зміст

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top