Page MenuHomec4science

DrydockBlueprintScopeGuard.php
No OneTemporary

File Metadata

Created
Mon, Jun 23, 14:51

DrydockBlueprintScopeGuard.php

<?php
final class DrydockBlueprintScopeGuard extends Phobject {
private $blueprint;
public function __construct(DrydockBlueprintImplementation $blueprint) {
$this->blueprint = $blueprint;
}
public function __destruct() {
$this->blueprint->popActiveScope();
}
}

Event Timeline