remove() публичный Метод

Remove a service
public remove ( string $name ) : Locator
$name string
Результат Locator
Пример #1
0
 public function testRemove()
 {
     $l = new Locator(array('config' => array('call' => 'Pop\\Config', 'params' => array(array('test' => 123), true)), 'rgb' => array('call' => 'Pop\\Color\\Space\\Rgb', 'params' => function () {
         return array(255, 0, 0);
     }), 'color' => function ($locator) {
         return new \Pop\Color\Color($locator->get('rgb'));
     }));
     $c = $l->get('config');
     $l->remove('config');
     $this->assertInstanceOf('Pop\\Config', $c);
     $this->assertNull($l->get('config'));
 }
Пример #2
0
<?php

require_once '../../bootstrap.php';
use Pop\Service\Locator;
try {
    $locator = new Locator();
    // Load the services manually via the setter
    $locator->set('config', 'Pop\\Config', array(array('test' => 123)))->set('color', 'Pop\\Color\\Color', array(new \Pop\Color\Rgb(255, 0, 0)));
    // Get a service
    print_r($locator->get('config'));
    // Remove a service
    $locator->remove('color');
    print_r($locator);
} catch (\Exception $e) {
    echo $e->getMessage() . PHP_EOL . PHP_EOL;
}