This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php namespace October\Rain\Support\Testing\Fakes; | |
| use Illuminate\Contracts\Queue\ShouldQueue; | |
| use Illuminate\Support\Testing\Fakes\MailFake as MailFakeBase; | |
| use October\Rain\Mail\Mailable; | |
| class MailFake extends MailFakeBase | |
| { | |
| /** | |
| * Send a new message using a view. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Renders the reorder popup | |
| * | |
| * @param null $recordId | |
| * @return mixed | |
| * @throws \SystemException | |
| */ | |
| public function index_onShowReorderPopup($recordId = null) { | |
| $this->reorder(); | |
| return $this->makePartial('reorder_form'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $this->client = new Client([ | |
| 'base_url' => 'https://app.snipcart.com/api/', | |
| 'auth' => [ | |
| 'ST_NTI3OTljM.......', | |
| ':' | |
| ], | |
| 'headers' => [ | |
| 'accept' => 'application/json' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // Dependencies | |
| // | |
| var gulp = require('gulp'); | |
| var path = require('path'); | |
| var js = require('./gulp/js'); | |
| // | |
| // Tasks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "ID": "231", | |
| "post_title": "Testtest", | |
| "post_content": "Lalalalalalala", | |
| "post_excerpt": "", | |
| "post_author": "14", | |
| "post_type": "event", | |
| "post_status": "publish", | |
| "post_image": null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| txt file content |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PS C:\Users\alexa_000\Documents\Kunden\Say\code\october\plugins\rainlab\twitter> git remote rm origin | |
| error: Could not remove config section 'remote.origin' | |
| PS C:\Users\alexa_000\Documents\Kunden\Say\code\october\plugins\rainlab\twitter> git remote -v | |
| origin | |
| PS C:\Users\alexa_000\Documents\Kunden\Say\code\october\plugins\rainlab\twitter> git remote rm origin | |
| error: Could not remove config section 'remote.origin' | |
| PS C:\Users\alexa_000\Documents\Kunden\Say\code\october\plugins\rainlab\twitter> git remote rm origin | |
| error: Could not remove config section 'remote.origin' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function generateHTML($elements, $formaters = array()) { | |
| $doc = new DOMDocument; | |
| $div = $doc->createElement('div'); | |
| $div->setAttribute('class', 'review-item'); | |
| $doc->appendChild($div); | |
| $table = $doc->createElement('table'); | |
| $div->appendChild($table); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Playground implements Serializable | |
| { | |
| public $rows = array(); | |
| public function __construct() { | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| require_once __DIR__.'/vendor/autoload.php'; | |
| return new Sami\Sami('/home/alxy/Vagrant/htdocs/laravel-bootstrap.dev/vendor/laravel/framework', array( | |
| 'theme' => 'default', | |
| 'title' => 'Laravel API', | |
| 'build_dir' => __DIR__.'/build', | |
| 'cache_dir' => __DIR__.'/cache', | |
| 'default_opened_level' => 2, |
NewerOlder