Mapper/Module/Schema fixes thanks to new tests

This commit is contained in:
Dennis Eichhorn 2019-02-26 00:00:31 +01:00
parent fc0140f66a
commit efb353ea38
2 changed files with 0 additions and 37 deletions

View File

@ -1,37 +0,0 @@
<?php
class Log implements \JsonSerializable
{
private $id = 0;
private $createdAt = null;
private $createdBy = null;
private $raw = '';
private $layout = 0;
public function __construct(string $message = '', int $layout = 0)
{
}
public function get(string $key) : string
{
return '';
}
public function toArray() : array
{
return [];
}
/**
* {@inheritdoc}
*/
public function jsonSerialize()
{
return $this->toArray();
}
}

View File