Skip to content

Commit

Permalink
php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
Kreyu committed Feb 18, 2024
1 parent 0967298 commit 6156af3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/Unit/Action/ActionConfigBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@
namespace Kreyu\Bundle\DataTableBundle\Tests\Unit\Action;

use Kreyu\Bundle\DataTableBundle\Action\ActionConfigBuilder;
use Kreyu\Bundle\DataTableBundle\Action\ActionConfigInterface;
use Kreyu\Bundle\DataTableBundle\Action\ActionContext;
use Kreyu\Bundle\DataTableBundle\Action\Type\ResolvedActionTypeInterface;
use Kreyu\Bundle\DataTableBundle\Action\ActionConfigInterface;
use Kreyu\Bundle\DataTableBundle\Tests\ReflectionTrait;
use PHPUnit\Framework\TestCase;

class ActionConfigBuilderTest extends TestCase
{

use ReflectionTrait;

public function testGetName()
Expand Down Expand Up @@ -92,7 +91,7 @@ public function testGetContext()
{
$builder = $this->createBuilder();
$builder->setContext(ActionContext::Row);

$this->assertSame(ActionContext::Row, $builder->getContext());
}

Expand Down

0 comments on commit 6156af3

Please sign in to comment.