Skip to content

Commit

Permalink
[Bridge/PhpUnit] Fix PHP5.5 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Jun 26, 2019
1 parent 64b68d4 commit 0c9b3c0
Showing 1 changed file with 8 additions and 8 deletions.
Expand Up @@ -18,14 +18,14 @@
*/
class Deprecation
{
private const PATH_TYPE_VENDOR = 'path_type_vendor';
private const PATH_TYPE_SELF = 'path_type_internal';
private const PATH_TYPE_UNDETERMINED = 'path_type_undetermined';

public const TYPE_SELF = 'type_self';
public const TYPE_DIRECT = 'type_direct';
public const TYPE_INDIRECT = 'type_indirect';
public const TYPE_UNDETERMINED = 'type_undetermined';
const PATH_TYPE_VENDOR = 'path_type_vendor';
const PATH_TYPE_SELF = 'path_type_internal';
const PATH_TYPE_UNDETERMINED = 'path_type_undetermined';

const TYPE_SELF = 'type_self';
const TYPE_DIRECT = 'type_direct';
const TYPE_INDIRECT = 'type_indirect';
const TYPE_UNDETERMINED = 'type_undetermined';

/**
* @var array
Expand Down

0 comments on commit 0c9b3c0

Please sign in to comment.