mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
72e65d6797
BREAKING CHANGE:
Before: constructor(@Inject(LifeCycle) lifecycle) { lifecycle.tick(); }
After: constructor(@Inject(ApplicationRef) appRef) { appRef.tick(); }
Closes #5008