File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 2525use Mcustiel \Phiremock \Codeception \Extension \Config ;
2626use Mcustiel \Phiremock \Codeception \Extension \PhiremockProcessManager ;
2727use Mcustiel \Phiremock \Codeception \Extension \ReadinessCheckerFactory ;
28- use Mcustiel \Phiremock \Codeception \Extension \Phiremock72 ;
29- use Mcustiel \Phiremock \Codeception \Extension \Phiremock74p ;
28+ use Mcustiel \Phiremock \Codeception \Extension \PhiremockPHP72 ;
29+ use Mcustiel \Phiremock \Codeception \Extension \PhiremockPHP74p ;
3030
3131class Phiremock extends CodeceptionExtension
3232{
@@ -46,9 +46,9 @@ public function __construct(
4646 PhiremockProcessManager $ process = null
4747 ) {
4848 if (version_compare (PHP_VERSION , '7.4.0 ' ) >= 0 ) {
49- $ this ->instance = new Phiremock74p ($ config , $ options , $ process );
49+ $ this ->instance = new PhiremockPHP74p ($ config , $ options , $ process );
5050 } else {
51- $ this ->instance = new Phiremock72 ($ config , $ options , $ process );
51+ $ this ->instance = new PhiremockPHP72 ($ config , $ options , $ process );
5252 }
5353 }
5454
Original file line number Diff line number Diff line change 1616 * along with phiremock-codeception-extension. If not, see <http://www.gnu.org/licenses/>.
1717 */
1818
19- namespace Codeception \Extension ;
19+ namespace Mcustiel \ Phiremock \ Codeception \Extension ;
2020
2121use Codeception \Event \SuiteEvent ;
2222use Codeception \Exception \ConfigurationException ;
2626use Mcustiel \Phiremock \Codeception \Extension \PhiremockProcessManager ;
2727use Mcustiel \Phiremock \Codeception \Extension \ReadinessCheckerFactory ;
2828
29- class Phiremock72 extends CodeceptionExtension
29+ class PhiremockPHP72 extends CodeceptionExtension
3030{
3131 /** @var array */
3232 public static $ events = [
Original file line number Diff line number Diff line change 1616 * along with phiremock-codeception-extension. If not, see <http://www.gnu.org/licenses/>.
1717 */
1818
19- namespace Codeception \Extension ;
19+ namespace Mcustiel \ Phiremock \ Codeception \Extension ;
2020
2121use Codeception \Event \SuiteEvent ;
2222use Codeception \Exception \ConfigurationException ;
2626use Mcustiel \Phiremock \Codeception \Extension \PhiremockProcessManager ;
2727use Mcustiel \Phiremock \Codeception \Extension \ReadinessCheckerFactory ;
2828
29- class Phiremock74p extends CodeceptionExtension
29+ class PhiremockPHP74p extends CodeceptionExtension
3030{
3131 /** @var array */
3232 public static array $ events = [
You can’t perform that action at this time.
0 commit comments