Navigation Menu

Skip to content

Commit

Permalink
Added default types for up/downstream duplicates
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabywalters committed Nov 15, 2012
1 parent c313054 commit 5a7e069
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ActivityStreams/ActivityStreams/Object.php
Expand Up @@ -49,8 +49,9 @@ class Object {
* Downstream Duplicates
*
* Array of IRIs of objects which duplicate this object’s content
* @var array
*/
public $downstreamDuplicates;
public $downstreamDuplicates = array();

/**
* ID
Expand Down Expand Up @@ -99,7 +100,7 @@ class Object {
*
* An array of IRIs representing upstream objects which duplicate this object’s content
*/
public $upstreamDuplicates;
public $upstreamDuplicates = array();

/**
* URL
Expand Down

0 comments on commit 5a7e069

Please sign in to comment.