Your IP : 216.73.216.61


Current Path : /home/gonzalx/www/administrator/components/com_widgetkit/src/Content/
Upload File :
Current File : /home/gonzalx/www/administrator/components/com_widgetkit/src/Content/ItemCollection.php

<?php

namespace YOOtheme\Widgetkit\Content;

use YOOtheme\Framework\Application;

class ItemCollection extends \ArrayObject
{
    protected $app;

    public function __construct(Application $app)
    {
        $this->app = $app;
    }

    public function add(array $data)
    {
        $this->append(new Item($this->app, $data));
    }
}