for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace dokuwiki\plugin\swarmwebhook\meta;
class Response
{
public $code;
public $content;
public function __construct($code, $content = '')
$this->code = $code;
$this->content = $content;
}