1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-02 02:40: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 $name = '';
protected $description = ''; protected $description = '';
protected $sequence; protected $sequence;
protected $inlineComments;
private $inlineComments;
private $file; private $file;
public function attachInlineComments(array $inline_comments) { public function attachInlineComments(array $inline_comments) {