Description
Category:
Bug
define()
expects two arguments. Even if the value of the constant that you wish to define is meaningless, you must specify a value. A good candidate may be the
true
constant.
Example
Wrong
define
(
"FOO"
);
// should have second parameter
Correct
define
(
"FOO"
,
true
);