The interface MVar\Apache2LogParser\LineParserInterface has been deprecated with message: Will be removed in 3.0. Use \MVar\LogParser\LineParserInterface instead.
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be
removed from the class and what other constant to use instead.
Loading history...
21
{
22
/**
23
* {@inheritdoc}
24
*/
25
public function parseLine($line)
26
{
27
if (!is_string($line)) {
28
throw new ParserException('Parser argument must be a string.');
The class MVar\Apache2LogParser\Exception\ParserException has been deprecated with message: Will be removed in 3.0. Use \MVar\LogParser\Exception\ParserException instead.
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be
removed from the class and what other constant to use instead.
The class MVar\Apache2LogParser\Exception\ParserException has been deprecated with message: Will be removed in 3.0. Use \MVar\LogParser\Exception\ParserException instead.
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be
removed from the class and what other constant to use instead.
Loading history...
36
}
37
38
if (!$match) {
39
throw new NoMatchesException('Given line does not match predefined pattern.');
The class MVar\Apache2LogParser\Exception\NoMatchesException has been deprecated with message: Will be removed in 3.0. Use \MVar\LogParser\Exception\MatchException instead.
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be
removed from the class and what other constant to use instead.
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.