Class members can only contain constants and literals, not the result of function calls, as it is not a constant value.
From the PHP Manual:
Like any other PHP static variable, static properties may only be initialized using a literal or constant; expressions are not allowed. So while you may initialize a static property to an integer or array (for instance), you may not initialize it to another variable, to a function return value, or to an object.