Skip to content

Commit

Permalink
styleci
Browse files Browse the repository at this point in the history
  • Loading branch information
recursivetree committed Jul 9, 2024
1 parent 6805830 commit 7071540
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions src/Jobs/Token/RefreshAccessToken.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
<?php

/*
* This file is part of SeAT
*
* Copyright (C) 2015 to present Leon Jacobs
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

namespace Seat\Eveapi\Jobs\Token;

use Illuminate\Contracts\Container\BindingResolutionException;
Expand All @@ -25,9 +45,9 @@ class RefreshAccessToken extends AbstractJob
*/
protected EsiClient $esi;


/**
* @param RefreshToken $token
* @param RefreshToken $token
*
* @throws BindingResolutionException
*/
public function __construct(RefreshToken $token)
Expand All @@ -36,7 +56,6 @@ public function __construct(RefreshToken $token)
$this->esi = app()->make(EsiClient::class);
}


/**
* @return void
*/
Expand Down Expand Up @@ -64,4 +83,4 @@ public function handle()

$this->token->save();
}
}
}

0 comments on commit 7071540

Please sign in to comment.