KodeStar
7 years ago
8 changed files with 54 additions and 0 deletions
@ -0,0 +1,7 @@ |
|||
<?php namespace App\SupportedApps\Contracts; |
|||
|
|||
interface Applications { |
|||
|
|||
public function defaultColour(); |
|||
|
|||
} |
@ -0,0 +1,8 @@ |
|||
<?php namespace App\SupportedApps; |
|||
|
|||
class Nzbget implements Contracts\Applications { |
|||
public function defaultColour() |
|||
{ |
|||
return '#ccc'; |
|||
} |
|||
} |
@ -0,0 +1,8 @@ |
|||
<?php namespace App\SupportedApps; |
|||
|
|||
class Plex implements Contracts\Applications { |
|||
public function defaultColour() |
|||
{ |
|||
return '#ccc'; |
|||
} |
|||
} |
Loading…
Reference in new issue