Skip to content

Commit

Permalink
namespace update
Browse files Browse the repository at this point in the history
  • Loading branch information
BarTracz committed Jun 27, 2024
1 parent 4163e07 commit 7959f5f
Show file tree
Hide file tree
Showing 16 changed files with 32 additions and 32 deletions.
4 changes: 2 additions & 2 deletions src/Contracts/Decorator.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

declare(strict_types=1);

namespace Blumilk\HeatmapBuilder\Contracts;
namespace Blumilk\Heatmap\Contracts;

use Blumilk\HeatmapBuilder\Tile;
use Blumilk\Heatmap\Tile;

interface Decorator
{
Expand Down
2 changes: 1 addition & 1 deletion src/Contracts/TimeGroupable.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Blumilk\HeatmapBuilder\Contracts;
namespace Blumilk\Heatmap\Contracts;

interface TimeGroupable
{
Expand Down
6 changes: 3 additions & 3 deletions src/Decorators/OpacityDecorator.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

declare(strict_types=1);

namespace Blumilk\HeatmapBuilder\Decorators;
namespace Blumilk\Heatmap\Decorators;

use Blumilk\HeatmapBuilder\Contracts\Decorator;
use Blumilk\HeatmapBuilder\Tile;
use Blumilk\Heatmap\Contracts\Decorator;
use Blumilk\Heatmap\Tile;

class OpacityDecorator implements Decorator
{
Expand Down
6 changes: 3 additions & 3 deletions src/Decorators/TailwindDecorator.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

declare(strict_types=1);

namespace Blumilk\HeatmapBuilder\Decorators;
namespace Blumilk\Heatmap\Decorators;

use Blumilk\HeatmapBuilder\Contracts\Decorator;
use Blumilk\HeatmapBuilder\Tile;
use Blumilk\Heatmap\Contracts\Decorator;
use Blumilk\Heatmap\Tile;

class TailwindDecorator implements Decorator
{
Expand Down
6 changes: 3 additions & 3 deletions src/HeatmapBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

declare(strict_types=1);

namespace Blumilk\HeatmapBuilder;
namespace Blumilk\Heatmap;

use ArrayAccess;
use Blumilk\HeatmapBuilder\Contracts\Decorator;
use Blumilk\HeatmapBuilder\Contracts\TimeGroupable;
use Blumilk\Heatmap\Contracts\Decorator;
use Blumilk\Heatmap\Contracts\TimeGroupable;
use Carbon\Carbon;
use Carbon\CarbonPeriod;
use Carbon\CarbonTimeZone;
Expand Down
2 changes: 1 addition & 1 deletion src/PeriodActions.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Blumilk\HeatmapBuilder;
namespace Blumilk\Heatmap;

use Carbon\CarbonPeriod;

Expand Down
2 changes: 1 addition & 1 deletion src/PeriodInterval.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Blumilk\HeatmapBuilder;
namespace Blumilk\Heatmap;

enum PeriodInterval: string
{
Expand Down
2 changes: 1 addition & 1 deletion src/Tile.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Blumilk\HeatmapBuilder;
namespace Blumilk\Heatmap;

use JsonSerializable;

Expand Down
4 changes: 2 additions & 2 deletions tests/ArrayAccessItemsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

declare(strict_types=1);

use Blumilk\HeatmapBuilder\HeatmapBuilder;
use Blumilk\HeatmapBuilder\Tile;
use Blumilk\Heatmap\HeatmapBuilder;
use Blumilk\Heatmap\Tile;
use Carbon\Carbon;
use PHPUnit\Framework\TestCase;

Expand Down
6 changes: 3 additions & 3 deletions tests/ContractedItemsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

declare(strict_types=1);

use Blumilk\HeatmapBuilder\Contracts\TimeGroupable;
use Blumilk\HeatmapBuilder\HeatmapBuilder;
use Blumilk\HeatmapBuilder\Tile;
use Blumilk\Heatmap\Contracts\TimeGroupable;
use Blumilk\Heatmap\HeatmapBuilder;
use Blumilk\Heatmap\Tile;
use Carbon\Carbon;
use PHPUnit\Framework\TestCase;

Expand Down
6 changes: 3 additions & 3 deletions tests/DecoratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

declare(strict_types=1);

use Blumilk\HeatmapBuilder\Decorators\TailwindDecorator;
use Blumilk\HeatmapBuilder\HeatmapBuilder;
use Blumilk\HeatmapBuilder\Tile;
use Blumilk\Heatmap\Decorators\TailwindDecorator;
use Blumilk\Heatmap\HeatmapBuilder;
use Blumilk\Heatmap\Tile;
use Carbon\Carbon;
use PHPUnit\Framework\TestCase;

Expand Down
4 changes: 2 additions & 2 deletions tests/NowChangedTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

declare(strict_types=1);

use Blumilk\HeatmapBuilder\HeatmapBuilder;
use Blumilk\HeatmapBuilder\Tile;
use Blumilk\Heatmap\HeatmapBuilder;
use Blumilk\Heatmap\Tile;
use Carbon\Carbon;
use PHPUnit\Framework\TestCase;

Expand Down
2 changes: 1 addition & 1 deletion tests/PeriodActionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

use Blumilk\HeatmapBuilder\HeatmapBuilder;
use Blumilk\Heatmap\HeatmapBuilder;
use Carbon\Carbon;
use PHPUnit\Framework\TestCase;

Expand Down
2 changes: 1 addition & 1 deletion tests/PeriodAligningTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

use Blumilk\HeatmapBuilder\HeatmapBuilder;
use Blumilk\Heatmap\HeatmapBuilder;
use Carbon\Carbon;
use PHPUnit\Framework\TestCase;

Expand Down
4 changes: 2 additions & 2 deletions tests/PeriodChangedTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

declare(strict_types=1);

use Blumilk\HeatmapBuilder\HeatmapBuilder;
use Blumilk\HeatmapBuilder\Tile;
use Blumilk\Heatmap\HeatmapBuilder;
use Blumilk\Heatmap\Tile;
use Carbon\Carbon;
use Carbon\CarbonPeriod;
use PHPUnit\Framework\TestCase;
Expand Down
6 changes: 3 additions & 3 deletions tests/PeriodIntervalTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

declare(strict_types=1);

use Blumilk\HeatmapBuilder\HeatmapBuilder;
use Blumilk\HeatmapBuilder\PeriodInterval;
use Blumilk\HeatmapBuilder\Tile;
use Blumilk\Heatmap\HeatmapBuilder;
use Blumilk\Heatmap\PeriodInterval;
use Blumilk\Heatmap\Tile;
use Carbon\Carbon;
use PHPUnit\Framework\TestCase;

Expand Down

0 comments on commit 7959f5f

Please sign in to comment.