本文整理匯總了PHP中Bootstrap::getApp方法的典型用法代碼示例。如果您正苦於以下問題:PHP Bootstrap::getApp方法的具體用法?PHP Bootstrap::getApp怎麽用?PHP Bootstrap::getApp使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Bootstrap
的用法示例。
在下文中一共展示了Bootstrap::getApp方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: setUp
function setUp()
{
$this->app = \Bootstrap::getApp();
$this->service = new CountryService($this->app["orm.em"]);
$this->shortener = new ShortenerService($this->app['orm.em']);
$this->app['createDB']();
}
示例2: testRegister
function testRegister()
{
$app = \Bootstrap::getApp();
$dm = $app['odm.dm'];
/* @var DocumentManager $dm */
$post = new Post();
$post->setContent("content of the post");
$post->setTitle("title of the post");
$post->setAuthor("author of the post");
$post->setCreated(new \DateTime());
$dm->persist($post);
$dm->flush();
$this->assertNotNull($post->getId());
$count = $dm->getRepository('Entity\\Post')->findAll()->count();
$this->assertEquals(1, $count);
$dm->remove($post);
$dm->flush();
}
開發者ID:mparaiso,項目名稱:doctrineodmserviceprovider,代碼行數:18,代碼來源:DoctrineODMMongoDBServiceProviderTest.php
示例3: setUp
function setUp()
{
parent::setUp();
$this->app = \Bootstrap::getApp();
}
開發者ID:mparaiso,項目名稱:urlshortenerappserviceprovider,代碼行數:5,代碼來源:UrlShortenerAppServiceProviderTest.php
示例4: createApplication
/**
* Creates the application.
*
* @return HttpKernel
*/
public function createApplication()
{
return \Bootstrap::getApp();
}
示例5:
<?php
require __DIR__ . "/tests/Bootstrap.php";
$app = Bootstrap::getApp();
$em = $app["odm.dm"];
$app->boot();
$app['odm.boot_commands']();
$app["console"]->run();
示例6: addMerchant
public static function addMerchant($name, $password, $stores, $privs)
{
$type = self::MERCHANT;
$user = new self();
$transaction = \Bootstrap::getApp()->getDi()->getTransactions()->get();
$user->setTransaction($transaction);
$user->name = $name;
$user->password = \Plugins\Common::generatePassword($password);
$user->type = $type;
if (!$user->save()) {
foreach ($user->getMessages() as $message) {
$transaction->rollback($message->getMessage());
}
return false;
}
$result = $user->addMerchantStore($stores);
$role = new \Model\Admin\Role();
$role->setTransaction($transaction);
$role->name = $name;
if (!$role->save()) {
foreach ($user->getMessages() as $message) {
$transaction->rollback($message->getMessage());
}
return false;
}
$result = $role->setRolePermission($privs);
if (!$result['result']) {
$transaction->rollback();
return false;
}
$user->role_id = $role->id;
if (!$user->save()) {
foreach ($user->getMessages() as $message) {
$transaction->rollback($message->getMessage());
}
return false;
}
$transaction->commit();
return true;
}