Rewrites:

- converted single-line if() block to multi-line and with curly braces
- "imported" SPL classes to have unified code style
- always initialize your variables ... :-/
- added some empty lines/spaces for better readability

Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
Roland Häder 2019-02-19 01:56:41 +01:00
parent 3b646644c0
commit 9fa812b35d
No known key found for this signature in database
GPG key ID: B72F8185C6C7BD78
8 changed files with 33 additions and 15 deletions

View file

@ -50,8 +50,14 @@ class Database implements IStorage
{
return DBA::delete('storage', ['id' => $ref]);
}
public static function getOptions() { return []; }
public static function saveOptions($data) { return []; }
public static function getOptions()
{
return [];
}
public static function saveOptions($data)
{
return [];
}
}