Yosymfony\Spress\Core\DataSource\Item::getType PHP Method

getType() public method

public getType ( )
    public function getType()
    {
        return $this->type;
    }

Usage Example

Example #1
0
 public function testLayoutItem()
 {
     $item = new Item('Test of content', 'index.html', [], false, Item::TYPE_LAYOUT);
     $this->assertEquals(item::TYPE_LAYOUT, $item->getType());
 }
All Usage Examples Of Yosymfony\Spress\Core\DataSource\Item::getType