* @link http://status.net/
*/
-if (!defined('STATUSNET'))
-{
- exit(1);
-}
+if (!defined('GNUSOCIAL')) { exit(1); }
/**
* A class for generating JSON documents that represent an Activity Streams
* @param User $cur the current authenticated user
*/
- function __construct($cur = null, $title = null, $items = null, $links = null, $url = null)
+ function __construct($cur = null, $title = null, array $items=[], $links = null, $url = null)
{
parent::__construct($items, $url);
<?php
+if (!defined('GNUSOCIAL')) { exit(1); }
/*
* Collection primarily as the root of an Activity Streams doc but can be used as the value
* @param string $url url of a doc list all the objs in the collection
* @param int $totalItems total number of items in the collection
*/
- function __construct($items = null, $url = null)
+ function __construct(array $items=[], $url = null)
{
$this->items = empty($items) ? array() : $items;
$this->totalItems = count($items);