Differential D14073 Diff 34742 src/applications/repository/management/PhabricatorRepositoryManagementParentsWorkflow.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/repository/management/PhabricatorRepositoryManagementParentsWorkflow.php
| Show First 20 Lines • Show All 85 Lines • ▼ Show 20 Lines | foreach ($refs as $ref) { | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| $console->writeOut( | $console->writeOut( | ||||
| "%s\n", | "%s\n", | ||||
| pht( | pht( | ||||
| 'Found %s total commit(s); updating...', | 'Found %s total commit(s); updating...', | ||||
| new PhutilNumber(count($graph)))); | phutil_count($graph))); | ||||
| $commit_table = id(new PhabricatorRepositoryCommit()); | $commit_table = id(new PhabricatorRepositoryCommit()); | ||||
| $commit_table_name = $commit_table->getTableName(); | $commit_table_name = $commit_table->getTableName(); | ||||
| $conn_w = $commit_table->establishConnection('w'); | $conn_w = $commit_table->establishConnection('w'); | ||||
| $bar = id(new PhutilConsoleProgressBar()) | $bar = id(new PhutilConsoleProgressBar()) | ||||
| ->setTotal(count($graph)); | ->setTotal(count($graph)); | ||||
| ▲ Show 20 Lines • Show All 78 Lines • Show Last 20 Lines | |||||