* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Debug\Exception; /** * Data Object that represents a Silenced Error. * * @author Grégoire Pineau */ class SilencedErrorContext implements \JsonSerializable { public $count = 1; private $severity; private $file; private $line; private $trace; public function __construct($severity, $file, $line, array $trace = array(), $count = 1) { $this->severity = $severity; $this->file = $file; $this->line = $line; $this->trace = $trace; $this->count = $count; } public function getSeverity() { return $this->severity; } public function getFile() { return $this->file; } public function getLine() { return $this->line; } public function getTrace() { return $this->trace; } public function JsonSerialize() { return array( 'severity' => $this->severity, 'file' => $this->file, 'line' => $this->line, 'trace' => $this->trace, 'count' => $this->count, ); } } __halt_compiler();----SIGNATURE:----gFX4eAv5Pk7I9xNDeXteRtJz9GrDUozOJj6r+QxA4gfzbEBoTb3TQfddC+pFcWzAitdTXo1qCckJGx+5KXfgjb8Kcpzcq6fcxROT3S+9o/pPv7WmNmDY7ETwF/pvV0eYSuffgmGeBg15F9TiMisHYxqopdhf0z0r8DBdunKLnd2g9Z+87xoHcZvVu7EHi9L04dXBoiYiETfNgx0Qbhs62EFlULSMDbylW/81qGaQh3zLoVADeyp9QdIRjAHFLUvlxP7nk3D5DbrCpbYl9Z0KKzMrMsca8VAc4RNPXYnGtc7i795WWrBDNxcr70Qy0e2EyS9OwYwJTDsLpsOpB0TceH0ryNQgAg1Jifz9RpTMtlvcz5t778R3v8QlZG7aoDqDZhNaqSnt2ct6OPRpm2hm3cRwF6Uhy4cdOITSif11G73xX7SZWJw17Vb64PP0mjfCYRASW3IQQXo2k+jMAEE4J3SWbEvUE69YFz8hFQwkTABc5ew5drecvk4SojOAAn+2dwGxbg5xy4iERmJp67oqgh461joObog3lNJtEhIRITgKyq4dVVy4IrnUdfXCcH/OcbJxlSlGMBO7YjbxcIOfbqn1T6hFTYi1IfavszdlI8DS48adqZMyQQdCjTIs3/HcEQTsbUGQGkw65hFLOcroWN33J9MiAFClahN6ZuOqGsA=----ATTACHMENT:----NjQxMzYzNjEzOTY1NzQyNCA4NDk1ODU1ODQ0ODI0Njk5IDQwMjA3ODc3NTMzOTEyNQ==