Updated TLS.php and added new endpoints to new ZoneSettings.php
This commit is contained in:
28
src/Configurations/AccessRules.php
Normal file
28
src/Configurations/AccessRules.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace Cloudflare\API\Configurations;
|
||||
|
||||
class AccessRules implements Configurations
|
||||
{
|
||||
private $config;
|
||||
|
||||
public function setIP(string $value)
|
||||
{
|
||||
$this->config = ['target' => 'ip', 'value' => $value];
|
||||
}
|
||||
|
||||
public function setIPRange(string $value)
|
||||
{
|
||||
$this->config = ['target' => 'ip_range', 'value' => $value];
|
||||
}
|
||||
|
||||
public function setCountry(string $value)
|
||||
{
|
||||
$this->config = ['target' => 'country', 'value' => $value];
|
||||
}
|
||||
|
||||
public function getArray(): array
|
||||
{
|
||||
return $this->config;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user