I hereby claim:
- I am ninjapanzer on github.
- I am paulscoder (https://keybase.io/paulscoder) on keybase.
- I have a public key ASAKcQ2MqhPC4Ms7oWDXKI5XuvUd7u1f-wThNqw1XR8vTQo
To claim this, I am signing this object:
| module MyModule | |
| class HandlerInterface | |
| extend T::Helpers | |
| extend T::Sig | |
| abstract! | |
| sig { abstract.params(input: T::Struct).returns(T::Struct) } | |
| def success_handler(input); end | |
| end |
| [Auth Release (DEV)/auth-release] 💬 ::debug::Found Invalid Tag: [object Object]. | |
| [Auth Release (DEV)/auth-release] 💬 ::debug::Found Invalid Tag: [object Object]. | |
| [Auth Release (DEV)/auth-release] 💬 ::debug::Found Invalid Tag: [object Object]. | |
| [Auth Release (DEV)/auth-release] 💬 ::debug::Found Invalid Tag: [object Object]. | |
| [Auth Release (DEV)/auth-release] 💬 ::debug::Found Invalid Tag: [object Object]. | |
| [Auth Release (DEV)/auth-release] 💬 ::debug::Found Invalid Tag: [object Object]. | |
| [Auth Release (DEV)/auth-release] 💬 ::debug::Found Invalid Tag: [object Object]. | |
| [Auth Release (DEV)/auth-release] 💬 ::debug::Found Invalid Tag: [object Object]. | |
| [Auth Release (DEV)/auth-release] 💬 ::debug::Found Invalid Tag: [object Object]. | |
| [Auth Release (DEV)/auth-release] 💬 ::debug::Found Invalid Tag: [object Object]. |
| #!/bin/bash | |
| ARRAY=( | |
| "phalcon:cphalcon" | |
| "phalcon:zephir" | |
| "phalcon:phalcon-devtools" | |
| "phalcon:incubator" | |
| "phalcon:docs-app" | |
| ) |
| #!/bin/bash | |
| ARRAY=( | |
| "webpack:webpack" | |
| "webpack:example-app" | |
| "webpack:enhanced-require" | |
| "webpack:webpack-dev-middleware" | |
| "webpack:enhanced-resolve" | |
| "webpack:template" | |
| "webpack:webpack-dev-server" |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| namespace App\Assets\JS; | |
| class ApplicationManifest | |
| { | |
| protected $assets; | |
| public function __construct($assets) | |
| { | |
| $assets->collection('fullcalendarCSS') |
| <?php namespace App; | |
| trait ModelEventHookTrait | |
| { | |
| protected static function createdHook() | |
| { | |
| return function ($model_instance) { | |
| if (method_exists(__CLASS__, 'createdHandler')) { | |
| self::createdHandler($model_instance); | |
| } |
| .logo | |
| %a{:href => "/"} | |
| %h1.headline Savvy Shots | |
| .tagline Photography |
| #!/usr/bin/env bash | |
| CONFIGBRANCH=add_config_files | |
| CURRENTBRANCH=`git symbolic-ref --short -q HEAD` | |
| TMPPATH=tmp/config | |
| rm -r $TMPPATH | |
| NAMES="`git diff --name-only $CURRENTBRANCH $CONFIGBRANCH`" |
| public class Butt{ | |
| private $string = ''; | |
| public static function ha($some_string) | |
| { | |
| $instance = new self($some_string); | |
| return $instance->addHa(); | |
| } | |
| public function __construct($some_string) |