2aaefbfa54
update readability to a newer implementation based on Readability.js (https://github.com/andreskrey/readability.php) add vendor/Psr/Log interface required for the above
18 lines
297 B
PHP
18 lines
297 B
PHP
<?php
|
|
|
|
namespace Psr\Log;
|
|
|
|
/**
|
|
* Describes a logger-aware instance.
|
|
*/
|
|
interface LoggerAwareInterface
|
|
{
|
|
/**
|
|
* Sets a logger instance on the object.
|
|
*
|
|
* @param LoggerInterface $logger
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setLogger(LoggerInterface $logger);
|
|
}
|