Skip to content

Commit

Permalink
Run php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
akondas committed Sep 21, 2016
1 parent 8072ddb commit 1ce6bb5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Phpml/Association/Apriori.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types=1);
declare (strict_types = 1);

namespace Phpml\Association;

Expand Down
2 changes: 1 addition & 1 deletion src/Phpml/Association/Associator.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types=1);
declare (strict_types = 1);

namespace Phpml\Association;

Expand Down
2 changes: 1 addition & 1 deletion src/Phpml/Math/Set.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types=1);
declare (strict_types = 1);

namespace Phpml\Math;

Expand Down
10 changes: 5 additions & 5 deletions tests/Phpml/Association/AprioriTest.php
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<?php

declare(strict_types = 1);
declare (strict_types = 1);

namespace tests\Classification;

use Phpml\Association\Apriori;

class AprioriTest extends \PHPUnit_Framework_TestCase
{
private $sampleGreek = [
private $sampleGreek = [
['alpha', 'beta', 'epsilon'],
['alpha', 'beta', 'theta'],
['alpha', 'beta', 'epsilon'],
['alpha', 'beta', 'theta'],
];

private $sampleChars = [
private $sampleChars = [
['E', 'D', 'N', 'E+N', 'EN'],
['E', 'R', 'N', 'E+R', 'E+N', 'ER', 'EN'],
['D', 'R'],
Expand All @@ -25,7 +25,7 @@ class AprioriTest extends \PHPUnit_Framework_TestCase
['E', 'D', 'N', 'E+N', 'EN'],
['E', 'R', 'E+R'],
['E'],
['N',],
['N'],
];

private $sampleBasket = [
Expand Down Expand Up @@ -179,7 +179,7 @@ public function testEquals()
public function invoke(&$object, $method, array $params = array())
{
$reflection = new \ReflectionClass(get_class($object));
$method = $reflection->getMethod($method);
$method = $reflection->getMethod($method);
$method->setAccessible(true);

return $method->invokeArgs($object, $params);
Expand Down

0 comments on commit 1ce6bb5

Please sign in to comment.