Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/storage/patch/PhabricatorSQLPatchList.php
| Show All 32 Lines | foreach ($patch_list as $patch) { | ||||
| ); | ); | ||||
| } | } | ||||
| return $patches; | return $patches; | ||||
| } | } | ||||
| final public static function buildAllPatches() { | final public static function buildAllPatches() { | ||||
| $patch_lists = id(new PhutilSymbolLoader()) | $patch_lists = id(new PhutilSymbolLoader()) | ||||
| ->setAncestorClass('PhabricatorSQLPatchList') | ->setAncestorClass(__CLASS__) | ||||
| ->setConcreteOnly(true) | ->setConcreteOnly(true) | ||||
| ->selectAndLoadSymbols(); | ->selectAndLoadSymbols(); | ||||
| $specs = array(); | $specs = array(); | ||||
| $seen_namespaces = array(); | $seen_namespaces = array(); | ||||
| foreach ($patch_lists as $patch_class) { | foreach ($patch_lists as $patch_class) { | ||||
| $patch_class = $patch_class['name']; | $patch_class = $patch_class['name']; | ||||
| ▲ Show 20 Lines • Show All 132 Lines • Show Last 20 Lines | |||||