PHP Classes

File: src/AppBundle/Resources/config/services.yml

Recommend this page to a friend!
  Classes of Omar Shaban   PHP Game of Three   src/AppBundle/Resources/config/services.yml   Download  
File: src/AppBundle/Resources/config/services.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Game of Three
Game of Three implementation using Websockets
Author: By
Last change:
Date: 2 years ago
Size: 792 bytes
 

Contents

Class file image Download
services: game_o_three.object_manager: alias: doctrine_mongodb.odm.default_document_manager game_o_three.topic_service: class: AppBundle\Topic\GameOThreeTopic arguments: [ "@game_o_three.service.game_manager" ] tags: - { name: gos_web_socket.topic } game_o_three.rpc_service: class: AppBundle\Rpc\GameOThreeRpc arguments: ["@logger", "@game_o_three.service.game_manager", "@gos_web_socket.wamp.pusher"] tags: - { name: gos_web_socket.rpc } game_o_three.repository.game: class: GameOThree\Core\Repository\GameRepository arguments: ["@game_o_three.object_manager"] game_o_three.service.game_manager: class: GameOThree\Core\Service\GameManager arguments: [ "@game_o_three.repository.game"]