AdamWathan\EloquentOAuthL5\Installation\InstallCommand::publishFile PHP Method

publishFile() public method

public publishFile ( $from, $to )
    public function publishFile($from, $to)
    {
        if ($this->filesystem->exists($to) && !$this->option('force')) {
            throw new FileExistsException();
        }
        $this->filesystem->copy($from, $to);
    }