Current Directory: /home/astoriaah/www/administrator/components/com_widgetkit/src/Content
Viewing File: /home/astoriaah/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));
}
}