for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PoLaKoSz\CoC_API\Models
{
class Cursors
/**
* @var string
*/
public $before;
public $after;
* @param stdClass
public function __construct($stdClass)
if ( isset($stdClass->before) )
$this->before = $stdClass->before;
if ( isset($stdClass->after) )
$this->after = $stdClass->after;
}