comparison core/tests/Drupal/FunctionalTests/Hal/EntityViewDisplayHalJsonBasicAuthTest.php @ 16:c2387f117808

Routine composer update
author Chris Cannam
date Tue, 10 Jul 2018 15:07:59 +0100
parents
children
comparison
equal deleted inserted replaced
15:e200cb7efeb3 16:c2387f117808
1 <?php
2
3 namespace Drupal\FunctionalTests\Hal;
4
5 use Drupal\Tests\rest\Functional\BasicAuthResourceTestTrait;
6
7 /**
8 * @group hal
9 */
10 class EntityViewDisplayHalJsonBasicAuthTest extends EntityViewDisplayHalJsonAnonTest {
11
12 use BasicAuthResourceTestTrait;
13
14 /**
15 * {@inheritdoc}
16 */
17 public static $modules = ['basic_auth'];
18
19 /**
20 * {@inheritdoc}
21 */
22 protected static $auth = 'basic_auth';
23
24 }