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
{{ message }}
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.
updating them to work with new HHAST is going to be painful
they've already been in several releases
they've been required for several releases of HHVM
This generally ends up with CLI flags with documentation of 'no longer supported' and an implementation of throw new ExitException(1, "Use HHAST v4.x.* for this migration");
Some changes to the CLI would be nice for this:
group together all the obsolete ones in --help - or hide them by default
instead of requiring the full implementation for each one, perhaps generate the CLIOption flags from a vec<(string $flag, string $first_version, string $last_version)>
The text was updated successfully, but these errors were encountered:
I'm occasionally deleting migrations if:
This generally ends up with CLI flags with documentation of 'no longer supported' and an implementation of
throw new ExitException(1, "Use HHAST v4.x.* for this migration");
Some changes to the CLI would be nice for this:
--help
- or hide them by defaultvec<(string $flag, string $first_version, string $last_version)>
The text was updated successfully, but these errors were encountered: