-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVerbFixtures.php
More file actions
38 lines (33 loc) · 861 Bytes
/
VerbFixtures.php
File metadata and controls
38 lines (33 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/*
* This file is part of the xAPI package.
*
* (c) Christian Flothmann <christian.flothmann@xabbuh.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Xabbuh\XApi\DataFixtures;
use Xabbuh\XApi\Model\Verb;
/**
* {@link Verb} fixtures
*
* @author Christian Flothmann <christian.flothmann@xabbuh.de>
*/
class VerbFixtures
{
public static function getVerb()
{
return new Verb('http://adlnet.gov/expapi/verbs/created', array(
'en-US' => 'created',
));
}
public static function getTravelledVerb()
{
return new Verb('http://www.adlnet.gov/XAPIprofile/ran(travelled_a_distance)', array(
'en-US' => 'ran',
'es' => 'corrió',
'de' => 'rannte',
));
}
}