1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-22 10:18:48 +02:00
phorge-phorge/src/applications/differential/storage/DifferentialDiffProperty.php

17 lines
324 B
PHP
Raw Normal View History

2011-01-24 21:07:34 +01:00
<?php
final class DifferentialDiffProperty extends DifferentialDAO {
2011-01-24 21:07:34 +01:00
protected $diffID;
protected $name;
protected $data;
protected function getConfiguration() {
return array(
self::CONFIG_SERIALIZATION => array(
'data' => self::SERIALIZATION_JSON,
2011-01-24 21:07:34 +01:00
)) + parent::getConfiguration();
}
}