Skip to content

Commit

Permalink
Change visibility of ManagedBy properties
Browse files Browse the repository at this point in the history
  • Loading branch information
perajovic committed Oct 22, 2016
1 parent 05f7338 commit af8b566
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Filos/FrameworkBundle/Model/ManagedBy.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,32 +15,32 @@ class ManagedBy
/**
* @var Uuid
*/
private $id;
protected $id;

/**
* @var string
*/
private $type;
protected $type;

/**
* @var bool
*/
private $exists;
protected $exists;

/**
* @var string|null
*/
private $firstname;
protected $firstname;

/**
* @var string|null
*/
private $lastname;
protected $lastname;

/**
* @var string
*/
private $email;
protected $email;

private function __construct()
{
Expand Down

0 comments on commit af8b566

Please sign in to comment.