git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
<?php | |
namespace App\Support\Jobs; | |
use Illuminate\Contracts\Queue\ShouldQueue; | |
class DebouncedJob implements ShouldQueue | |
{ | |
use \Illuminate\Foundation\Bus\DispatchesJobs; | |
use \App\Support\Cache\PrefixedCache; |
<?xml version="1.0"?> | |
<ruleset name="Laravel Standards"> | |
<!-- | |
The name attribute of the ruleset tag is displayed | |
when running PHP_CodeSniffer with the -v command line | |
argument. The description tag below is not displayed anywhere | |
except in this file, so it can contain information for | |
developers who may change this file in the future. | |
--> |
<?php | |
$query = <<<'GRAPHQL' | |
query GetUser($user: String!) { | |
user (login: $user) { | |
name | |
repositoriesContributedTo { | |
totalCount | |
} |
<?xml version="1.0" encoding="UTF-8"?> | |
<ruleset name="Laravel"> | |
<description>The default PHP Code Style of my Laravel projects.</description> | |
<!-- Files to include. --> | |
<file>app</file> | |
<file>config</file> | |
<file>routes</file> | |
<file>tests</file> |
<?php | |
namespace Tests; | |
use Tests\Authenticated; | |
use Illuminate\Support\Facades\Auth; | |
use Illuminate\Foundation\Testing\RefreshDatabase; | |
class ArticleUpdateTest extends TestCase | |
{ |