I hereby claim:
- I am augustmiller on github.
- I am awmiller (https://keybase.io/awmiller) on keybase.
- I have a public key ASBgbxeFHc-8kvRHREGvnJy2bEqD5s8caibq0ohbwJnm4wo
To claim this, I am signing this object:
| <? class CustomKirbyValetDriver extends ValetDriver | |
| { | |
| /** | |
| * Determine if the driver serves the request. | |
| * | |
| * @param string $sitePath | |
| * @param string $siteName | |
| * @param string $uri | |
| * @return void | |
| */ |
| module.exports = (serializeArrayResult) -> | |
| obj = {} | |
| arr = serializeArrayResult | |
| for pair in arr | |
| if obj[pair.name] isnt undefined | |
| if !Array.isArray obj[pair.name] | |
| # Convert existing single value to an array: | |
| obj[pair.name] = [obj[pair.name]] |
| {% comment %} | |
| Set up `transform` string for inclusion in a URL: | |
| {% endcomment %} | |
| {% if size %} | |
| {% assign transform = size | prepend: '_' %} | |
| {% else %} | |
| {% assign transform = '' %} | |
| {% endif %} |
| <?php | |
| namespace Deployer; | |
| require 'recipe/composer.php'; | |
| // Project name | |
| set('application', 'my-project'); | |
| // Project repository | |
| set('repository', '[email protected]:organization/repo.git'); |
| <?php | |
| /** | |
| * Example Adjuster. | |
| * Place in: `/myplugin/adjusters/Test.php` (and rename as such) | |
| * | |
| * @link https://oof.studio/ | |
| * @copyright Copyright (c) 2018 oof. Studio | |
| */ | |
| namespace oofbar\test\adjusters; |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| namespace modules; | |
| use Craft; | |
| /** | |
| * Custom module class. | |
| * | |
| * This class will be available throughout the system via: | |
| * `Craft::$app->getModule('my-module')`. |
| <?php namespace modules\mymodule\controllers; | |
| use Craft; | |
| use craft\web\Controller; | |
| use yii\web\ForbiddenHttpException; | |
| /** | |
| * The Base Controller for all Module Controllers | |
| * |
| . | |
| ├── backup.sh | |
| ├── backups | |
| │ ├── latest -> /home/minecraft/bedrock/backups/worlds-2020-04-04T19:30:01+00:00 | |
| │ ├── lock (When a backup is running) | |
| │ ├── worlds-2020-04-03T23:31:10+00:00 | |
| │ ├── worlds-2020-04-03T23:31:10+00:00 | |
| │ ├── worlds-2020-04-04T00:00:01+00:00 | |
| │ ├── worlds-2020-04-04T18:30:01+00:00 | |
| │ ├── worlds-2020-04-04T19:00:01+00:00 |
| <?php | |
| namespace dpdx\plugin\adjusters; | |
| use Craft; | |
| use craft\base\Component; | |
| use craft\helpers\ArrayHelper; | |
| use craft\commerce\Plugin as Commerce; | |
| use craft\commerce\base\AdjusterInterface; | |
| use craft\commerce\elements\Order; |