Skip to content

Commit

Permalink
composer format
Browse files Browse the repository at this point in the history
  • Loading branch information
shimonewman committed May 8, 2024
1 parent 125581f commit e277e16
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 0 additions & 2 deletions tests/unit/GetEnvTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@

use PHPUnit\Framework\TestCase;


class GetEnvTest extends TestCase
{

public function testGetEnv()
{
$platform = new Mock();
Expand Down
12 changes: 6 additions & 6 deletions tests/unit/Mock.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php

namespace Utopia\Unit;

use Utopia\Platform\Platform;
use Utopia\Tests\TestModule;

class Mock extends Platform
{
public function __construct(){

$module = new TestModule();
parent::__construct($module);

}
public function __construct()
{
$module = new TestModule();
parent::__construct($module);
}
}

0 comments on commit e277e16

Please sign in to comment.