File "OwnerRole.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/laravel/jetstream/src/OwnerRole.php
File size: 248 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Laravel\Jetstream;

class OwnerRole extends Role
{
    /**
     * Create a new role instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct('owner', 'Owner', ['*']);
    }
}