Skip to content

Commit

Permalink
Changed protected to private modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
sedonik committed Dec 6, 2019
1 parent dc8821d commit f305a84
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Operation extends DataObject implements OperationInterface
/**
* @var OperationStatusValidator
*/
protected $operationStatusValidator;
private $operationStatusValidator;

/**
* Operation constructor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class OperationStatusPool
/**
* @var array
*/
protected $statuses;
private $statuses;

/**
* @param array $statuses
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class OperationStatusValidator
/**
* @var OperationStatusPool
*/
protected $operationStatusPool;
private $operationStatusPool;

/**
* OperationStatusValidator constructor.
Expand Down

0 comments on commit f305a84

Please sign in to comment.