mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-26 05:29:06 +01:00
Summary: The idea is to have all `phtize` definitions in applications to allow their separation. Test Plan: Clicked View Options after mangling the translation. Reviewers: epriestley Reviewed By: epriestley CC: btrahan, Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D7345
10 lines
220 B
PHP
10 lines
220 B
PHP
<?php
|
|
|
|
final class Javelin {
|
|
|
|
public static function initBehavior($behavior, array $config = array()) {
|
|
$response = CelerityAPI::getStaticResourceResponse();
|
|
$response->initBehavior($behavior, $config);
|
|
}
|
|
|
|
}
|