本文整理汇总了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;
}