Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/worker/src/Symfony/Filesyst.../Exceptio...
File: IOException.php
<?php
[0] Fix | Delete
[1] Fix | Delete
[2] Fix | Delete
class Symfony_Filesystem_Exception_IOException extends RuntimeException implements Symfony_Filesystem_Exception_IOExceptionInterface
[3] Fix | Delete
{
[4] Fix | Delete
private $path;
[5] Fix | Delete
[6] Fix | Delete
public function __construct($message, $code = 0, Exception $previous = null, $path = null)
[7] Fix | Delete
{
[8] Fix | Delete
$this->path = $path;
[9] Fix | Delete
[10] Fix | Delete
if (version_compare(PHP_VERSION, '5.3', '>=')) {
[11] Fix | Delete
parent::__construct($message, $code, $previous);
[12] Fix | Delete
} else {
[13] Fix | Delete
parent::__construct($message, $code);
[14] Fix | Delete
}
[15] Fix | Delete
}
[16] Fix | Delete
[17] Fix | Delete
/**
[18] Fix | Delete
* {@inheritdoc}
[19] Fix | Delete
*/
[20] Fix | Delete
public function getPath()
[21] Fix | Delete
{
[22] Fix | Delete
return $this->path;
[23] Fix | Delete
}
[24] Fix | Delete
}
[25] Fix | Delete
[26] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function