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