mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Convert Object class to BaseObject in core classes
This commit is contained in:
parent
5bdf95932f
commit
1a81fd43f3
16 changed files with 129 additions and 120 deletions
|
|
@ -6,7 +6,7 @@
|
|||
*
|
||||
* @author NAVER (developers@xpressengine.com)
|
||||
*/
|
||||
class FileObject extends Object
|
||||
class FileObject extends BaseObject
|
||||
{
|
||||
|
||||
/**
|
||||
|
|
@ -50,7 +50,7 @@ class FileObject extends Object
|
|||
*/
|
||||
function append($file_name)
|
||||
{
|
||||
$target = new FileObject($file_name, "r");
|
||||
$target = new self($file_name, "r");
|
||||
while(!$target->feof())
|
||||
{
|
||||
$readstr = $target->read();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue