I hereby claim:
- I am LeeSaferite on github.
- I am leesaferite (https://keybase.io/leesaferite) on keybase.
- I have a public key whose fingerprint is 1835 8C99 6B55 F4F1 CAB6 8211 2BC1 C990 97B8 51FA
To claim this, I am signing this object:
[ | |
{ | |
"name": "Aboleth", | |
"meta": "Large aberration, lawful evil", | |
"Armor Class": "17 (Natural Armor)", | |
"Hit Points": "135 (18d10 + 36)", | |
"Speed": "10 ft., swim 40 ft. ", | |
"STR": "21", | |
"STR_mod": "(+5)", | |
"DEX": "9", |
<?php | |
namespace Lokey\Fixes\Plugin\Magento\Framework\Reflection; | |
use Zend\Code\Reflection\MethodReflection; | |
class TypeProcessor | |
{ | |
/** | |
* Fix handling of docblock return definitions |
package main | |
import ( | |
"context" | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
"os/signal" |
<?php | |
function seconds_to_time(int $seconds) : string | |
{ | |
return sprintf("%d:%02d:%02d", floor($seconds / 3600), (($seconds / 60) % 60), ($seconds % 60)); | |
} |
PHP_IDE_CONFIG='serverName=SOME_SERVER' php -d xdebug.remote_autostart=1 some_script.php |
I hereby claim:
To claim this, I am signing this object:
Verifying that +leesaferite is my blockchain ID. https://onename.com/leesaferite |
<?php | |
class Aoe_QueuedOperations_Model_Observer | |
{ | |
/** | |
* This is used to queue the sales grid updates | |
* | |
* NB: This should be attached to the sales_order_resource_update_grid_records event | |
* | |
* | |
* @see Mage_Sales_Model_Resource_Order_Abstract::updateGridRecords |
<?php | |
/** | |
* @param array $parameters | |
* @param string $secretKey | |
* | |
* @return string | |
* | |
* @throws InvalidArgumentException | |
*/ | |
function prepareParameters(array $parameters, $secretKey) |
<?php | |
public function suggestQty($qty) | |
{ | |
// We do not manage stock | |
if ($qty <= 0 || !$this->getManageStock()) { | |
return $qty; | |
} | |
$qtyIncrements = (int)$this->getQtyIncrements(); // Currently only integer increments supported | |
if ($qtyIncrements < 2) { |