Skip to content

Instantly share code, notes, and snippets.

@EuphoryX1
Created February 8, 2013 05:43
Show Gist options
  • Save EuphoryX1/4736911 to your computer and use it in GitHub Desktop.
Save EuphoryX1/4736911 to your computer and use it in GitHub Desktop.
サービスを別のサービスに注入する。例ではsessionを注入している。
<?php
namespace Euphory\Bundle\StoreBundle;
class ServiceWithSession
{
private $session;
public function setSession($session)
{
$this->session = $session;
}
}
service_with_session:
class: Euphory\Bundle\StoreBundle\ServiceWithSession
calls:
- [ setSession, [ @session ] ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment