You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current framework code (singleton -> model) does not match to the strict standard of PHP 5.4
It was implemented to support < PHP 5.2. Thus, there are three cases to support. < PHP 5.3, PHP 5.3.X, > PHP 5.4.
Modify static variable calls / singleton code.
개요
현재 프레임웍의 싱글톤 구현은 PHP 5.4의 강화된 표준 규약을 만족하지 않습니다.
현재의 구현은 PHP 5.2 미만에서 late static binding이 지원되지 않는 부분을 지원하기 위해 creorix님께서 구현한 부분입니다. PHP 5.3에서 미묘한 충돌이 있는데, 따라서 5.2 미만, 5.3, 5.4 이상 세가지 경우를 모두 지원하는 버전을 만들어야 합니다.
The text was updated successfully, but these errors were encountered:
Summary
개요
The text was updated successfully, but these errors were encountered: