for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Addwiki\Mediawiki\Api\Client\Rest\Request;
trait JsonBodyTrait {
private $body = null;
public function setJsonBody( array $body ): self {
$this->body = $body;
return $this;
}
public function getJsonBody(): ?array {
return $this->body;