PHP Classes

File: bin/.phpunit/phpunit-7.5-0/tests/end-to-end/regression/GitHub/1335/bootstrap1335.php

Recommend this page to a friend!
  Classes of Paulo Henrique   symfony-dual-login   bin/.phpunit/phpunit-7.5-0/tests/end-to-end/regression/GitHub/1335/bootstrap1335.php   Download  
File: bin/.phpunit/phpunit-7.5-0/tests/end-to-end/regression/GitHub/1335/bootstrap1335.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: symfony-dual-login
API to get user details using OAuth authentication
Author: By
Last change:
Date: 3 years ago
Size: 877 bytes
 

Contents

Class file image Download
<?php
/*
 * This file is part of PHPUnit.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
$globalString = 'Hello';
$globalIntTruthy = 1;
$globalIntFalsey = 0;
$globalFloat = 1.123;
$globalBoolTrue = true;
$globalBoolFalse = false;
$globalNull = null;
$globalArray = ['foo'];
$globalNestedArray = [['foo']];
$globalObject = (object) ['foo'=> 'bar'];
$globalObjectWithBackSlashString = (object) ['foo'=> 'back\\slash'];
$globalObjectWithDoubleBackSlashString = (object) ['foo'=> 'back\\\\slash'];