Completed
Push — master ( 212fb0...0da4a9 )
by Fulvio
16:03 queued 06:25
created

tests/acceptance/AdminTestCest.php (2 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
class AdminTestCest  {
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
Expected 1 space after class name; 2 found
Loading history...
4
5
6
	public function TestPluginsPage( AcceptanceTester $I ) {
7
8
		$I->wantTo( 'See if WP PHP Console is listed in Plugins page' );
9
		$I->amOnPluginsPage();
10
		$I->seePluginActivated( 'wp-php-console' );
11
	}
12
13
14
}
15