mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-11-22 06:23:01 +00:00
18 lines
255 B
PHP
18 lines
255 B
PHP
<?php
|
|
|
|
namespace AirQuality\Actions;
|
|
|
|
|
|
class FetchData {
|
|
private $settings;
|
|
private $renderer;
|
|
|
|
public function __construct(
|
|
\SBRL\TomlConfig $in_settings) {
|
|
$this->settings = $in_settings;
|
|
}
|
|
|
|
public function handle() {
|
|
echo("Testing");
|
|
}
|
|
}
|