Skip to content
Merged
Show file tree
Hide file tree
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
Fix review comments
  • Loading branch information
TavoNiievez committed Oct 30, 2021
commit 323f0cf66c888d0bddf66da78e1b6a7f80bfe0f6
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ AspectMock allows you to stub and mock practically anything in your PHP code!

**Documentation** | [Test Doubles Builder](https://github.com/Codeception/AspectMock/blob/master/docs/Test.md) | [ClassProxy](https://github.com/Codeception/AspectMock/blob/master/docs/ClassProxy.md) | [InstanceProxy](https://github.com/Codeception/AspectMock/blob/master/docs/InstanceProxy.md) | [FuncProxy](https://github.com/Codeception/AspectMock/blob/master/docs/FuncProxy.md)

[![Actions Status](https://github.com/Codeception/aspectMock/workflows/CI/badge.svg)](https://github.com/Codeception/aspectMock/actions)
[![Actions Status](https://github.com/Codeception/AspectMock/workflows/CI/badge.svg)](https://github.com/Codeception/AspectMock/actions)
[![Latest Stable Version](https://poser.pugx.org/codeception/aspect-mock/v/stable.png)](https://packagist.org/packages/codeception/aspect-mock)
[![Total Downloads](https://poser.pugx.org/codeception/aspect-mock/downloads)](https://packagist.org/packages/codeception/aspect-mock)
[![Monthly Downloads](https://poser.pugx.org/codeception/aspect-mock/d/monthly)](https://packagist.org/packages/codeception/aspect-mock)
Expand Down Expand Up @@ -147,7 +147,8 @@ No PECL extensions is required. The [Go! AOP](http://go.aopphp.com/) library doe

## Requirements

PHP >= 7.4 [Go! AOP Requirements](https://github.com/goaop/framework#requirements)
* `PHP 7.4`.
* `Go! AOP 3.0`

## Installation

Expand Down
3 changes: 0 additions & 3 deletions tests/unit/testDoubleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,6 @@ public function testCleanupSpecificObj()

public function testPhp7Features()
{
if (PHP_MAJOR_VERSION < 7) {
$this->markTestSkipped('PHP 7 only');
}
Kernel::getInstance()->loadFile(codecept_data_dir() . 'php7.php');
test::double(TestPhp7Class::class, [
'stringSth' => true,
Expand Down