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
| # frozen_string_literal: true | |
| require 'openssl' | |
| require 'rbconfig' | |
| module Dalli | |
| ## | |
| # Various socket implementations used by Dalli. | |
| ## | |
| module Socket |
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 | |
| /** | |
| * Encryption Algorithms Class | |
| * Written By : Aaron Jackson | |
| */ | |
| Class Encryption | |
| { | |
| // DECLARE THE REQUIRED VARIABLES | |
| public $ENC_METHOD = "AES-256-CBC"; // THE ENCRYPTION METHOD. |
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\Searchable; | |
| use Illuminate\Database\Eloquent\Builder; | |
| use Illuminate\Support\Arr; | |
| use Illuminate\Support\Facades\Config; | |
| use Illuminate\Support\Facades\DB; | |
| use Illuminate\Support\Str; | |
| /** | |
| * Trait SearchableTrait |
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\Chat\Models; | |
| use Chat; | |
| use Illuminate\Contracts\Pagination\LengthAwarePaginator; | |
| use Illuminate\Database\Eloquent\Model; | |
| use Illuminate\Database\Eloquent\Relations\HasMany; | |
| use Illuminate\Database\Eloquent\Relations\HasOne; | |
| use Illuminate\Database\Query\Builder; |
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\NoCaptcha; | |
| use Symfony\Component\HttpFoundation\Request; | |
| use GuzzleHttp\Client; | |
| class NoCaptcha | |
| { | |
| const CLIENT_API = 'https://www.google.com/recaptcha/api.js'; |