Skip to content
This repository has been archived by the owner on Sep 20, 2021. It is now read-only.

chore(php) Move to PHP 7.1 #25

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore(php) Fix CS.
Hywan committed Feb 20, 2019
commit 51a5aa6e5956842189c3ad4c3f5acfde78a5413a
9 changes: 4 additions & 5 deletions Test/Unit/Registry.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

/**
* Hoa
@@ -43,9 +45,6 @@
* Class \Hoa\Registry\Test\Unit\Registry.
*
* Test suite of the registry.
*
* @copyright Copyright © 2007-2017 Hoa community
* @license New BSD License
*/
class Registry extends Test\Unit\Suite
{
@@ -55,7 +54,7 @@ public function case_no_instance()
->exception(function () {
new LUT();
})
->isInstanceOf('Hoa\Registry\Exception');
->isInstanceOf(LUT\Exception::class);
}

public function case_classic()