mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-08 13:51:02 +01:00
b6d745b666
Summary: All classes should extend from some other class. See D13275 for some explanation. Test Plan: `arc unit` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13283
8 lines
172 B
PHP
8 lines
172 B
PHP
<?php
|
|
|
|
abstract class PhabricatorLiskSerializer extends Phobject {
|
|
|
|
abstract public function willReadValue($value);
|
|
abstract public function willWriteValue($value);
|
|
|
|
}
|