mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
17 lines
289 B
PHP
17 lines
289 B
PHP
<?php namespace Visiosoft\ProfileModule\Profile\Event;
|
|
|
|
|
|
class SiteStatusControl
|
|
{
|
|
public function __construct($request,$settings)
|
|
{
|
|
$this->request = $request;
|
|
$this->settings = $settings;
|
|
}
|
|
|
|
public function getRequest()
|
|
{
|
|
return $this;
|
|
}
|
|
}
|