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
These two do the same: _zval_ptr_dtor() merely Z_DELREF_P(z); when Z_REFCOUNT_P(z) > 1 and therefore PHALCON_OBSERVE_VAR can be dropped in favor of PHALCON_OBS_NVAR.
ext/kernel/memory.h:
The first one is not used, the second one is used once and can be replaced with
PHALCON_INIT_VAR()
These two do the same:
_zval_ptr_dtor()
merelyZ_DELREF_P(z);
whenZ_REFCOUNT_P(z) > 1
and thereforePHALCON_OBSERVE_VAR
can be dropped in favor ofPHALCON_OBS_NVAR
.I don't see any difference (except spaces).
PHALCON_SEPARATE_NMO
is used only once; they both do the same asand therefore
should do the trick.
not used anywhere and probably can be dropped.
The text was updated successfully, but these errors were encountered: