fix(SupportedApps): fixed Item.php

Fixed Item.php because forgot to save the changes before push

Closes #65
This commit is contained in:
Futos 2018-02-14 01:07:44 +01:00
parent 7cfd6e7493
commit 0f9b1cdf25

View file

@ -1,12 +1,12 @@
<?php namespace App\SupportedApps;
class HomeAssistant implements Contracts\Applications {
class Netdata implements Contracts\Applications {
public function defaultColour()
{
return '#073c52';
return '#543737';
}
public function icon()
{
return 'supportedapps/homeassistant.png';
return 'supportedapps/netdata.png';
}
}