From 883f6829b583a65293db3fca587712a2bfef3fdd Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 27 Oct 2017 18:23:35 +0200 Subject: [PATCH] Fix tabs to spaces --- Models/Log.php | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/Models/Log.php b/Models/Log.php index b603add..349960b 100644 --- a/Models/Log.php +++ b/Models/Log.php @@ -2,33 +2,33 @@ class Log implements \JsonSerializable { - private $id = 0; + private $id = 0; - private $createdAt = null; + private $createdAt = null; - private $createdBy = null; + private $createdBy = null; - private $raw = ''; + private $raw = ''; - private $layout = 0; + private $layout = 0; - public function __construct(string $message = '', int $layout = 0) - { + public function __construct(string $message = '', int $layout = 0) + { - } + } - public function get(string $key) : string - { - return ''; - } + public function get(string $key) : string + { + return ''; + } - public function toArray() : array - { - return []; - } + public function toArray() : array + { + return []; + } - public function jsonSerialize() - { - return $this->toArray(); - } + public function jsonSerialize() + { + return $this->toArray(); + } } \ No newline at end of file