1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-30 09:20:58 +01:00

Fix issue when creating a new mock in Pholio

Summary: Fix T2573. The way Lisk works, we try to save "protected" fields to the database. For non-database data, use "private".

Test Plan: Created a new mock.

Reviewers: chad, ljalonen

Reviewed By: chad

CC: aran

Maniphest Tasks: T2573

Differential Revision: https://secure.phabricator.com/D5053
This commit is contained in:
epriestley 2013-02-21 14:24:45 -08:00
parent 3d6500823c
commit 9912fd08e3

View file

@ -13,8 +13,8 @@ final class PholioImage extends PholioDAO
protected $name = '';
protected $description = '';
protected $sequence;
protected $inlineComments;
private $inlineComments;
private $file;
public function attachInlineComments(array $inline_comments) {