Brion Vibber schreef:
unlink( $dstPath );
$this->unlink( $dstPath );
[snip]
chmod( $dstPath, 0644 );
$this->chmod( $dstPath, 0644 );
These don't exist. If they're needed, should they be added?
I don't really get that; unlink(), chmod() and file_get_contents() are built-in PHP functions, why would you want to wrap around them in a class?
Roan Kattouw (Catrope)