| @@ -2,7 +2,7 @@ | ||
| 2 | 2 | namespace Xetaravel\Http\Controllers; | 
| 3 | 3 | |
| 4 | 4 | use Illuminate\Http\RedirectResponse; | 
| 5 | -use Illuminate\Http\Request ; | |
| 5 | +use Illuminate\Http\Request; | |
| 6 | 6 | use Xetaravel\Models\Newsletter; | 
| 7 | 7 | use Xetaravel\Models\Repositories\NewsletterRepository; | 
| 8 | 8 | use Xetaravel\Models\Validators\NewsletterValidator; | 
| @@ -14,7 +14,7 @@ | ||
| 14 | 14 | */ | 
| 15 | 15 | public function download($fileName) | 
| 16 | 16 |      { | 
| 17 | -        $filePath = public_path('files/'.$fileName); | |
| 17 | +        $filePath = public_path('files/' . $fileName); | |
| 18 | 18 | |
| 19 | 19 | return response()->download($filePath); | 
| 20 | 20 | } | 
| @@ -85,8 +85,8 @@ | ||
| 85 | 85 |          Mail::to(config('xetaravel.site.contact_email'))->send(new Contact($details)); | 
| 86 | 86 | |
| 87 | 87 | return redirect() | 
| 88 | -           ->route('page.contact') | |
| 89 | -           ->with('success', 'Thanks for contacting me ! I will answer you as fast as I can !'); | |
| 88 | +            ->route('page.contact') | |
| 89 | +            ->with('success', 'Thanks for contacting me ! I will answer you as fast as I can !'); | |
| 90 | 90 | } | 
| 91 | 91 | |
| 92 | 92 | /** | 
| @@ -7,7 +7,7 @@ | ||
| 7 | 7 | use Illuminate\Contracts\View\Factory; | 
| 8 | 8 | use Illuminate\Foundation\Application; | 
| 9 | 9 | use Illuminate\Http\RedirectResponse; | 
| 10 | -use Illuminate\Http\Request ; | |
| 10 | +use Illuminate\Http\Request; | |
| 11 | 11 | use Illuminate\Support\Facades\App; | 
| 12 | 12 | use Illuminate\Support\Facades\Auth; | 
| 13 | 13 | use Illuminate\Support\Facades\Mail; | 
| @@ -9,7 +9,7 @@ | ||
| 9 | 9 | final class GithubPullRequestParser implements InlineParserInterface | 
| 10 | 10 |  { | 
| 11 | 11 | // Regex used to match Github pull request link. | 
| 12 | - public const REGEXP_PURLLREQUEST = '\bhttps?:\/\/github\.com\/(?<repo>[\w-]+\/[\w-]+)\/'. | |
| 12 | + public const REGEXP_PURLLREQUEST = '\bhttps?:\/\/github\.com\/(?<repo>[\w-]+\/[\w-]+)\/' . | |
| 13 | 13 | '(?<type>issues|pull)\/(?<issue>\d+)'; | 
| 14 | 14 | |
| 15 | 15 | public function getMatchDefinition(): InlineParserMatch | 
| @@ -21,7 +21,7 @@ | ||
| 21 | 21 | * | 
| 22 | 22 | * @return Response|RedirectResponse | 
| 23 | 23 | */ | 
| 24 | - public function handle(Request $request, Closure $next): Response|RedirectResponse | |
| 24 | + public function handle(Request $request, Closure $next): Response | RedirectResponse | |
| 25 | 25 |      { | 
| 26 | 26 | BlogArticle::addGlobalScope(new DisplayScope()); | 
| 27 | 27 | |
| @@ -7,7 +7,7 @@ | ||
| 7 | 7 | use Psr\Container\NotFoundExceptionInterface; | 
| 8 | 8 | use Xetaravel\Settings\Settings; | 
| 9 | 9 | |
| 10 | -if (! function_exists('settings')) { | |
| 10 | +if (!function_exists('settings')) { | |
| 11 | 11 | /** | 
| 12 | 12 | * @throws ContainerExceptionInterface | 
| 13 | 13 | * @throws NotFoundExceptionInterface | 
| @@ -19,7 +19,7 @@ discard block | ||
| 19 | 19 | $this->uuid = md5(serialize($this)); | 
| 20 | 20 | } | 
| 21 | 21 | |
| 22 | - public function icon(): string|Stringable | |
| 22 | + public function icon(): string | Stringable | |
| 23 | 23 |      { | 
| 24 | 24 | $name = Str::of($this->name); | 
| 25 | 25 | |
| @@ -35,7 +35,7 @@ discard block | ||
| 35 | 35 | /** | 
| 36 | 36 | * Get the view / contents that represent the component. | 
| 37 | 37 | */ | 
| 38 | - public function render(): View|Closure|string | |
| 38 | + public function render(): View | Closure | string | |
| 39 | 39 |      { | 
| 40 | 40 |          return view('components.icon'); | 
| 41 | 41 | } | 
| @@ -23,7 +23,7 @@ | ||
| 23 | 23 | /** | 
| 24 | 24 | * Get the view / contents that represent the component. | 
| 25 | 25 | */ | 
| 26 | - public function render(): View|Closure|string | |
| 26 | + public function render(): View | Closure | string | |
| 27 | 27 |      { | 
| 28 | 28 |          return view('components.form'); | 
| 29 | 29 | } | 
| @@ -62,7 +62,7 @@ | ||
| 62 | 62 | /** | 
| 63 | 63 | * Get the view / contents that represent the component. | 
| 64 | 64 | */ | 
| 65 | - public function render(): View|Closure|string | |
| 65 | + public function render(): View | Closure | string | |
| 66 | 66 |      { | 
| 67 | 67 |          return view('components.input'); | 
| 68 | 68 | } |