Skip to content

Commit

Permalink
Create a new Number utility class
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Oct 28, 2023
1 parent 85a5146 commit b5fb4a9
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Illuminate/Support/Number.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

namespace Illuminate\Support;

use Illuminate\Support\Traits\Macroable;

class Number
{
use Macroable;

//
}
11 changes: 11 additions & 0 deletions tests/Support/SupportNumberTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

namespace Illuminate\Tests\Support;

use Illuminate\Support\Number;
use PHPUnit\Framework\TestCase;

class SupportNumberTest extends TestCase
{
//
}

0 comments on commit b5fb4a9

Please sign in to comment.