Create trait for accessing body property
This commit is contained in:
12
src/Traits/BodyAccessorTrait.php
Normal file
12
src/Traits/BodyAccessorTrait.php
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Cloudflare\API\Traits;
|
||||||
|
|
||||||
|
trait BodyAccessorTrait {
|
||||||
|
private $body;
|
||||||
|
|
||||||
|
public function getBody()
|
||||||
|
{
|
||||||
|
return $this->body;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user