This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-import axios from 'axios'; | |
-import fs from 'fs'; | |
-import path from 'path'; | |
-import a from 'a'; | |
-import somethingElse from '../somethingElse'; | |
+import a from 'a'; | |
+import fs from 'fs'; | |
+import path from 'path'; | |
+import axios from 'axios'; | |
+import somethingElse from '../somethingElse'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Support; | |
use DOMXPath; | |
use DOMDocument; | |
class SafeLinksReplacer | |
{ | |
public static function replace(string $html): string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Database\Migrations\Migration; | |
use Illuminate\Database\Schema\Blueprint; | |
use Illuminate\Database\SQLiteConnection; | |
use Illuminate\Support\Facades\Schema; | |
use Illuminate\Support\Facades\DB; | |
return new class extends Migration | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "1.24.4", | |
"modified": true, | |
"page": { | |
"editors": [ | |
{ | |
"id": "4cd30d03-dc95-4a19-807e-7ca9551f28cb", | |
"added": [], | |
"removed": [], | |
"focused": [], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Models; | |
// ... | |
use App\Enums\UserMediaCollection; | |
class User extends Authenticatable | |
{ | |
// ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespaced App\Providers; | |
use RuntimeException; | |
use Illuminate\Support\Facades\Route; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Routing\ImplicitRouteBinding; | |
class RouteServiceProvider extends ServiceProvider |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App; | |
class Utility | |
{ | |
/** | |
* The registered utilities. | |
*/ | |
protected static array $utilities = []; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Providers; | |
class FilesystemMockProvider extends ServiceProvider | |
{ | |
public function boot() | |
{ | |
if (App::isProduction()) { | |
return; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Observers; | |
trait Mutable | |
{ | |
public static function mute(string|array $events = null) | |
{ | |
if (is_null($events)) { | |
$events = ['*']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$timezones = array_map(function ($timezone) { | |
$date = new DateTime('now', $tz = new DateTimeZone($timezone)); | |
return [ | |
'timezone' => $timezone, | |
// Format: "(GMT -05:00) America/Toronto" | |
'label' => "({$date->format('\G\M\T P')}) {$tz->getName()}", | |
]; | |
}, DateTimeZone::listIdentifiers()); |
NewerOlder