FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
google-cloud-php/Core/unit-bootstrap.php at main · googleapis/google-cloud-php · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
googleapis
/
google-cloud-php
Public
Notifications
You must be signed in to change notification settings
Fork
464
Star
1.2k
Code
Issues
45
Pull requests
26
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
google-cloud-php
/
Core
/
unit-bootstrap.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
17 lines (14 loc) · 756 Bytes
Breadcrumbs
google-cloud-php
/
Core
/
unit-bootstrap.php
Copy path
File metadata and controls
17 lines (14 loc) · 756 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
use
DG
\
BypassFinals
;
use
Google
\
ApiCore
\
Testing
\
MessageAwareArrayComparator
;
use
Google
\
ApiCore
\
Testing
\
ProtobufGPBEmptyComparator
;
use
Google
\
ApiCore
\
Testing
\
ProtobufMessageComparator
;
date_default_timezone_set
(
'
UTC
'
);
\
SebastianBergmann
\
Comparator
\Factory::
getInstance
()->
register
(
new
MessageAwareArrayComparator
());
\
SebastianBergmann
\
Comparator
\Factory::
getInstance
()->
register
(
new
ProtobufMessageComparator
());
\
SebastianBergmann
\
Comparator
\Factory::
getInstance
()->
register
(
new
ProtobufGPBEmptyComparator
());
// Make sure that while testing we bypass the `final` keyword for the GAPIC client.
// Only run this if the individual component has the helper package installed
if
(
class_exists
(BypassFinals::class)) {
BypassFinals::
enable
();
}
Back
|
FazBrowse Home
|
New Git URL