12 lines
No EOL
235 B
PHP
12 lines
No EOL
235 B
PHP
<?php namespace App\SupportedApps;
|
|
|
|
class Plex implements Contracts\Applications {
|
|
public function defaultColour()
|
|
{
|
|
return '#222';
|
|
}
|
|
public function icon()
|
|
{
|
|
return 'supportedapps/plex.png';
|
|
}
|
|
} |