Skip to content

Commit

Permalink
Set visibility of Document::$iri and Document::$defaultGraph to prote…
Browse files Browse the repository at this point in the history
…cted
  • Loading branch information
lanthaler committed Feb 3, 2013
1 parent f043ef0 commit 93f6fe9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Document.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ class Document implements DocumentInterface
/**
* @var IRI The document's IRI
*/
private $iri = null;
protected $iri = null;

/**
* @var GraphInterface The default graph
*/
private $defaultGraph = null;
protected $defaultGraph = null;

/**
* @var array An associative array holding all named graphs in the document
Expand Down

0 comments on commit 93f6fe9

Please sign in to comment.