Every block
should be in separated file named as block.
Filename: rating-star.scss
.rating-star {
$font-size: 0.5em;
display: inline-block; // `display` style may be set freely
export PATH="$PATH:$HOME/.composer/vendor/bin" | |
export PATH="$HOME/.npm-packages/bin:$PATH" | |
export PATH=/Users/Shared/DBngin/mysql/5.7.23/bin:$PATH | |
function pushme { | |
br=`git branch | grep "*"` | |
git add --all | |
if (($# > 1)); then |
<?php | |
$finder = PhpCsFixer\Finder::create() | |
->name('*.php') | |
->in(__DIR__ . DIRECTORY_SEPARATOR . 'app') | |
->in(__DIR__ . DIRECTORY_SEPARATOR . 'tests'); | |
return PhpCsFixer\Config::create() | |
->setRiskyAllowed(true) | |
->setRules([ |
?php | |
namespace App\Http\Controllers\Api; | |
use App\Enums\PurchaseType; | |
use App\Http\Requests\PurchaseRequest; | |
use App\Http\Resources\UserResource; | |
use App\Models\App; | |
use App\Models\Subscription; | |
use App\Models\User; |