show dbs
  
    
      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
    
  
  
    
  | 'use strict'; | |
| /** | |
| * Module dependencies. | |
| */ | |
| var crypto = require('crypto'); | |
| /** | |
| * Calculates the MD5 hash of a string. | |
| * | 
  
    
      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 App\Events; | |
| use Illuminate\Contracts\Broadcasting\ShouldBroadcast; | |
| use Illuminate\Queue\SerializesModels; | |
| class NewMessage extends Event implements ShouldBroadcast | |
| { | |
  
    
      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
    
  
  
    
  | # Edit ~/.bash_profile | |
| export GOPATH=/Users/$USER/go | |
| export PATH=$GOPATH/bin:$PATH | |
| # Reload profile : source ~/.bash_profile | 
  
    
      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 Nelissen\LooseCI\Services; | |
| use Nelissen\LooseCI\Repositories\Room\RoomRepositoryInterface; | |
| use Nelissen\LooseCI\Repositories\Booking\BookingRepositoryInterface; | |
| use Nelissen\LooseCI\Repositories\Booker\BookerRepositoryInterface; | |
| use Nelissen\LooseCI\Models\Room; | |
| use Nelissen\LooseCI\Models\Booker; | |
| use Nelissen\LooseCI\Exceptions\BookingExceedsRoomCapacityException; | |
| /** | 
  
    
      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 | |
| # Error handler | |
| function custom_error_handler($errno, $errstr, $errfile, $errline) | |
| { | |
| if (AppSettings::$env == 'dev') | |
| { | |
| throw new ErrorException($errstr, 0, $errno, $errfile, $errline); | |
| } | |
| else |