Skip to content

Commit

Permalink
Fix: Run php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz authored and sebastianbergmann committed Oct 10, 2018
1 parent ece7b37 commit 2e5304d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion tests/_files/DataProviderIssue2833/SecondTest.php
Expand Up @@ -13,7 +13,7 @@

class SecondTest extends TestCase
{
const DUMMY = 'dummy';
public const DUMMY = 'dummy';

public function testSecond(): void
{
Expand Down
4 changes: 2 additions & 2 deletions tests/_files/ExceptionNamespaceTest.php
Expand Up @@ -16,14 +16,14 @@ class ExceptionNamespaceTest extends \PHPUnit\Framework\TestCase
*
* @var string
*/
const ERROR_MESSAGE = 'Exception namespace message';
public const ERROR_MESSAGE = 'Exception namespace message';

/**
* Exception code
*
* @var int
*/
const ERROR_CODE = 200;
public const ERROR_CODE = 200;

/**
* @expectedException Class
Expand Down
6 changes: 3 additions & 3 deletions tests/_files/ExceptionTest.php
Expand Up @@ -16,21 +16,21 @@ class ExceptionTest extends TestCase
*
* @var string
*/
const ERROR_MESSAGE = 'Exception message';
public const ERROR_MESSAGE = 'Exception message';

/**
* Exception message
*
* @var string
*/
const ERROR_MESSAGE_REGEX = '#regex#';
public const ERROR_MESSAGE_REGEX = '#regex#';

/**
* Exception code
*
* @var int
*/
const ERROR_CODE = 500;
public const ERROR_CODE = 500;

/**
* @expectedException FooBarBaz
Expand Down
Expand Up @@ -13,11 +13,11 @@
*/
class SeparateClassRunMethodInNewProcessTest extends PHPUnit\Framework\TestCase
{
const PROCESS_ID_FILE_PATH = __DIR__ . '/parent_process_id.txt';
public const PROCESS_ID_FILE_PATH = __DIR__ . '/parent_process_id.txt';

const INITIAL_MASTER_PID = 0;
public const INITIAL_MASTER_PID = 0;

const INITIAL_PID1 = 1;
public const INITIAL_PID1 = 1;

public static $masterPid = self::INITIAL_MASTER_PID;

Expand Down
Expand Up @@ -16,7 +16,7 @@
*/
class BeforeAfterClassPidTest extends TestCase
{
const PID_VARIABLE = 'current_pid';
public const PID_VARIABLE = 'current_pid';

/**
* @beforeClass
Expand Down

0 comments on commit 2e5304d

Please sign in to comment.