芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/myvyralapp.com/bck/vendor/laravel/passport/database/factories/ClientFactory.php
ensurePrimaryKeyIsSet([ 'user_id' => null, 'name' => $this->faker->company(), 'secret' => Str::random(40), 'redirect' => $this->faker->url(), 'personal_access_client' => false, 'password_client' => false, 'revoked' => false, ]); } /** * Ensure the primary key is set on the model when using UUIDs. * * @param array $data * @return array */ protected function ensurePrimaryKeyIsSet(array $data) { if (Passport::clientUuids()) { $keyName = (new $this->model)->getKeyName(); $data[$keyName] = (string) Str::orderedUuid(); } return $data; } /** * Use as Password Client. * * @return $this */ public function asPasswordClient() { return $this->state([ 'personal_access_client' => false, 'password_client' => true, ]); } /** * Use as Client Credentials. * * @return $this */ public function asClientCredentials() { return $this->state([ 'personal_access_client' => false, 'password_client' => false, ]); } }