for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Stack Exchange Api Client library.
*
* Copyright (c) 2014-2016 Beñat Espiña <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace BenatEspina\StackExchangeApiClient\Infrastructure\Domain\Model;
use BenatEspina\StackExchangeApiClient\Domain\Model\Question;
/**
* The anemic implementation of question domain class.
* @author Beñat Espiña <[email protected]>
class AnemicQuestion implements Question
{
public static function fromJson($data)
return new self();
}
public static function fromProperties()
private function __construct()