ghost
1 year ago
2 changed files with 40 additions and 1 deletions
@ -0,0 +1,36 @@
@@ -0,0 +1,36 @@
|
||||
<?php |
||||
|
||||
class AppModelWebsite |
||||
{ |
||||
private $_config; |
||||
|
||||
public function __construct(object $config) |
||||
{ |
||||
$this->_config = $config; |
||||
} |
||||
|
||||
public function getConfig() : object |
||||
{ |
||||
return $this->_config->name; |
||||
} |
||||
|
||||
public function getName() : string |
||||
{ |
||||
return $this->_config->name; |
||||
} |
||||
|
||||
public function getUrl() : string |
||||
{ |
||||
return $this->_config->url; |
||||
} |
||||
|
||||
public function getDefaultUserApproved() : bool |
||||
{ |
||||
return $this->_config->default->user->approved; |
||||
} |
||||
|
||||
public function getApiExportEnabled() : bool |
||||
{ |
||||
return $this->_config->api->export->enabled; |
||||
} |
||||
} |
Loading…
Reference in new issue