Symfony\Component\DependencyInjection\ChildDefinition::getChanges PHP Method

getChanges() public method

Returns all changes tracked for the Definition object.
public getChanges ( ) : array
return array An array of changes for this Definition
    public function getChanges()
    {
        return $this->changes;
    }

Usage Example

Example #1
0
    public function testConstructor()
    {
        $def = new ChildDefinition('foo');

        $this->assertSame('foo', $def->getParent());
        $this->assertSame(array(), $def->getChanges());
    }
All Usage Examples Of Symfony\Component\DependencyInjection\ChildDefinition::getChanges