for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the xAPI package.
*
* (c) Christian Flothmann <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Xabbuh\XApi\Serializer\Tests\Fixtures;
/**
* JSON encoded actor fixtures.
* @author Christian Flothmann <[email protected]>
class ActorJsonFixtures extends JsonFixtures
{
* Loads an agent.
* @return string
public static function getAgent()
return static::load('agent');
}
* Loads an agent without an object type reference included.
public static function getAgentWithoutObjectType()
return static::load('agent_without_object_type');
* Loads a group.
public static function getGroup()
return static::load('group');
* Loads an anonymous group.
public static function getAnonymousGroup()
return static::load('anonymous_group');