mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-29 02:02:41 +01:00
12 lines
167 B
PHP
12 lines
167 B
PHP
|
<?php
|
||
|
|
||
|
final class DifferentialHunkLegacy extends DifferentialHunk {
|
||
|
|
||
|
protected $changes;
|
||
|
|
||
|
public function getTableName() {
|
||
|
return 'differential_hunk';
|
||
|
}
|
||
|
|
||
|
}
|