PATH:
var
/
www
/
vhosts
/
sandbox.dos-group.com
/
beacons.sandbox.dos-group.com
/
vendor
/
dos
/
common
/
src
/
Dos
/
File
<?php /** * Created by PhpStorm. * User: claudio.mandica * Date: 24/04/15 * Time: 14:08 */ namespace Dos\File; abstract class FileManagerBase { protected $handle; public abstract function __construct($filename, $mode = 'w'); public function writeLine($string = "") { fwrite($this->handle, $string.PHP_EOL); } public function write($string) { fwrite($this->handle, $string); } public function close() { fclose($this->handle); } }
[-] FileManagerOutputCsv.php
[open]
[+]
..
[-] FileManagerBase.php
[open]
[-] FileManagerOutput.php
[open]
[-] FileManager.php
[open]