Issues (5)

src/StripeCustomersTileServiceProvider.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace Digikraaft\StripeCustomersTile;
4
5
use Illuminate\Support\ServiceProvider;
6
use Livewire\Livewire;
7
8
class StripeCustomersTileServiceProvider extends ServiceProvider
9
{
10
    public function boot()
11
    {
12
        if ($this->app->runningInConsole()) {
13
            $this->commands([
14
                FetchCustomersDataFromStripeApi::class,
15
            ]);
16
        }
17
18
        $this->publishes([
19
            __DIR__ . '/../resources/views' => resource_path('views/vendor/stripe-customers-tile'),
0 ignored issues
show
The function resource_path was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

19
            __DIR__ . '/../resources/views' => /** @scrutinizer ignore-call */ resource_path('views/vendor/stripe-customers-tile'),
Loading history...
20
        ], 'stripe-customers-tile-views');
21
22
        $this->loadViewsFrom(__DIR__ . '/../resources/views', 'dashboard-stripe-customers-tile');
23
24
        Livewire::component('stripe-customers-tile', StripeCustomersTileComponent::class);
25
    }
26
}
27