I hereby claim:
- I am timothybjacobs on github.
- I am timothybjacobs (https://keybase.io/timothybjacobs) on keybase.
- I have a public key ASB8jv_N_jdRoVloJ7Zs421fmFRiW_sVQhkR_Oz9oeODAQo
To claim this, I am signing this object:
<?php | |
declare( strict_types=1 ); | |
/* | |
* Plugin Name: Demo App Passwords Client | |
*/ | |
namespace TimothyBJacobs\AppPasswordsClientDemo; | |
const META_KEY = '_app_passwords_client_demo_creds'; |
<?php | |
namespace Helper; | |
class WpVersion extends \Codeception\Module { | |
use \tad\WPBrowser\Traits\WithWpCli; | |
private $version; |
<?php | |
namespace Helper; | |
class WpVersion extends \Codeception\Module { | |
use \tad\WPBrowser\Traits\WithWpCli; | |
public function _initialize() { | |
parent::_initialize(); |
DB_PORT=9119 | |
WP_PORT=7253 | |
WP_TAG=latest |
I hereby claim:
To claim this, I am signing this object:
<?php | |
/** | |
* API for making complex queries. | |
* | |
* @author Iron Bound Designs | |
* @since 1.0 | |
* @copyright 2015 (c) Iron Bound Designs. | |
* @license GPLv2 | |
*/ |
interface A { | |
public function do_this(); | |
} | |
trait A_Trait { | |
public function do_this() { | |
// do something | |
} | |
} |
// | |
// ViewController.swift | |
// LionsAndTigers | |
// | |
// Created by Timothy Jacobs on 10/18/14. | |
// Copyright (c) 2014 Iron Bound Designs. All rights reserved. | |
// | |
import UIKit |