Create trait for accessing body property

This commit is contained in:
Levi Durfee
2018-10-19 09:34:17 -04:00
parent a3a346ccb2
commit 59f6d72d0a

View File

@@ -0,0 +1,12 @@
<?php
namespace Cloudflare\API\Traits;
trait BodyAccessorTrait {
private $body;
public function getBody()
{
return $this->body;
}
}