-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Labels
Description
I am working on Laravel project . It throw error about the dash sign on file name 'omise-php' . How can I fix it ??
in the UsersController , you can notice that it hit the line number 6 and thrown error.
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Http\Requests;
use omise\omise-php\lib\Omise;
class UsersController extends Controller
{
// ... others actions
}
in the app.php
// .. other service providers
Laravel\Cashier\CashierServiceProvider::class,
omise\omise-php\lib\Omise::class,
// .. other service providers
Moreover, in naming convention , I have never seen name with dash sign before . I have seen only camelCase , snake_case or PascalCase.
