Nullable+void typehint

This commit is contained in:
Dennis Eichhorn 2018-03-13 20:55:24 +01:00
parent 0d0af81fef
commit 5966ec1432
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ class Navigation
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public static function install(string $path = null, DatabasePool $dbPool = null) /* : void */ public static function install(string $path = null, DatabasePool $dbPool = null) : void
{ {
$navData = json_decode(file_get_contents(__DIR__ . '/Navigation.install.json'), true); $navData = json_decode(file_get_contents(__DIR__ . '/Navigation.install.json'), true);

View File

@ -92,7 +92,7 @@ class Promotion
return $this->media; return $this->media;
} }
public function addMedia($media) /* : void */ public function addMedia($media) : void
{ {
$this->media[] = $media; $this->media[] = $media;
} }