Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vtigercrm
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Welcome to Vtiger Community. To gain access for account, please contact [ community @ vtiger.com ]
Show more breadcrumbs
Stefan Warnat
vtigercrm
Commits
b0b67fdc
Commit
b0b67fdc
authored
2 years ago
by
Prasad
Browse files
Options
Downloads
Patches
Plain Diff
Fixed static function signature
parent
6d53a956
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vtlib/thirdparty/network/PEAR.php
+3
-3
3 additions, 3 deletions
vtlib/thirdparty/network/PEAR.php
with
3 additions
and
3 deletions
vtlib/thirdparty/network/PEAR.php
+
3
−
3
View file @
b0b67fdc
...
...
@@ -230,7 +230,7 @@ class PEAR
* @return mixed A reference to the variable. If not set it will be
* auto initialised to NULL.
*/
function
&
getStaticProperty
(
$class
,
$var
)
static
function
&
getStaticProperty
(
$class
,
$var
)
{
static
$properties
;
if
(
!
isset
(
$properties
[
$class
]))
{
...
...
@@ -279,7 +279,7 @@ class PEAR
* @access public
* @return bool true if parameter is an error
*/
function
isError
(
$data
,
$code
=
null
)
static
function
isError
(
$data
,
$code
=
null
)
{
if
(
is_a
(
$data
,
'PEAR_Error'
))
{
if
(
is_null
(
$code
))
{
...
...
@@ -524,7 +524,7 @@ class PEAR
* @see PEAR::setErrorHandling
* @since PHP 4.0.5
*/
function
&
raiseError
(
$message
=
null
,
static
function
&
raiseError
(
$message
=
null
,
$code
=
null
,
$mode
=
null
,
$options
=
null
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment