for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Pageon\SlackWebhookMonolog\Slack;
use JsonSerializable;
/**
* This will return the string representation when the class is encoded to json.
*
* @author Jelmer Prins <[email protected]>
*/
abstract class SerializeToString implements JsonSerializable
{
* {@inheritdoc}
public function jsonSerialize()
return (string) $this;
}