Skip to content

Commit

Permalink
Merge branch 'hotfix/2.4.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
hswong3i committed Nov 22, 2014
2 parents 8c25b27 + 1a47865 commit f006e2b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Tests/TestBundle/DataFixtures/ORM/AccessTokenFixture.php
Expand Up @@ -19,6 +19,17 @@ class AccessTokenFixture implements FixtureInterface
{
public function load(ObjectManager $manager)
{
$model = new AccessToken();
$model->setAccessToken('18cdaa6481c0d5f323351ea1029fc065')
->setTokenType('bearer')
->setClientId('6b44c21ef7bc8ca7380bb5b8276b3f97')
->setUsername('demousername1')
->setExpires(new \DateTime('+10 years'))
->setScope(array(
'demoscope1',
));
$manager->persist($model);

$model = new AccessToken();
$model->setAccessToken('eeb5aa92bbb4b56373b9e0d00bc02d93')
->setTokenType('bearer')
Expand Down

0 comments on commit f006e2b

Please sign in to comment.