PHPackages                             flawlol/facade - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. flawlol/facade

ActiveLibrary[Framework](/categories/framework)

flawlol/facade
==============

Facade logic for Symfony

v1.1.4(1y ago)0501MITPHPPHP &gt;=8.1

Since Aug 24Pushed 1y ago1 watchersCompare

[ Source](https://github.com/flawlol/symfony-facade)[ Packagist](https://packagist.org/packages/flawlol/facade)[ RSS](/packages/flawlol-facade/feed)WikiDiscussions main Synced yesterday

READMEChangelogDependencies (1)Versions (15)Used By (1)

[![Scrutinizer Code Quality](https://camo.githubusercontent.com/d838b1aa7bd10a932b52c4c049c9e7a350f16e05479f5cf30d82ebdda773231f/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f666c61776c6f6c2f73796d666f6e792d6661636164652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/flawlol/symfony-facade/?branch=main)[![Build Status](https://camo.githubusercontent.com/190ff35c6aeb8bfa19dec8e5a0c58effcc4190e346d024f7486828378cdb6224/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f666c61776c6f6c2f73796d666f6e792d6661636164652f6261646765732f6275696c642e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/flawlol/symfony-facade/build-status/main)[![Code Intelligence Status](https://camo.githubusercontent.com/b1c45cb51f02a00ced2fcf0ae67adcda47d2df75d8d9eafdc23fa8c042518815/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f666c61776c6f6c2f73796d666f6e792d6661636164652f6261646765732f636f64652d696e74656c6c6967656e63652e7376673f623d6d61696e)](https://scrutinizer-ci.com/code-intelligence)[![StyleCI](https://camo.githubusercontent.com/4519692543378b50a27ae5270108dd7ea9dd47564a5343d11a3322de0de3dfa5/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3834373035363239352f736869656c643f6272616e63683d6d61696e)](https://github.styleci.io/repos/847056295?branch=main)

[![Latest Stable Version](https://camo.githubusercontent.com/5342052427434bd9b85ac5181e2151ff098a6c13c7acc00622f1813accda94a6/68747470733a2f2f706f7365722e707567782e6f72672f666c61776c6f6c2f6661636164652f76)](https://packagist.org/packages/flawlol/facade)[![Total Downloads](https://camo.githubusercontent.com/e5c028d6ef85cf1b581eec04a1563d9d407b286bab21622ee7fa7d2c04c14281/68747470733a2f2f706f7365722e707567782e6f72672f666c61776c6f6c2f6661636164652f646f776e6c6f616473)](https://packagist.org/packages/flawlol/facade)[![Latest Unstable Version](https://camo.githubusercontent.com/e28f7fa59c250971ec2281ca4cdf2fd70684f7bbcd85794c1655d4908cd24e13/68747470733a2f2f706f7365722e707567782e6f72672f666c61776c6f6c2f6661636164652f762f756e737461626c65)](https://packagist.org/packages/flawlol/facade)[![License](https://camo.githubusercontent.com/b012d316e17ce935ed9cea8407ede637d17699066a66af99c76405f0302c5b85/68747470733a2f2f706f7365722e707567782e6f72672f666c61776c6f6c2f6661636164652f6c6963656e7365)](https://packagist.org/packages/flawlol/facade)[![PHP Version Require](https://camo.githubusercontent.com/ef7f631eaad9d2a96e4cbe1f50ba1f571493ae163d87a28cb2b0c266d0be5a2d/68747470733a2f2f706f7365722e707567782e6f72672f666c61776c6f6c2f6661636164652f726571756972652f706870)](https://packagist.org/packages/flawlol/facade)

Symfony - Facade
================

[](#symfony---facade)

Author
------

[](#author)

- name: **Norbert Kecső**
- email: ****

Overview
--------

[](#overview)

This project provides a facade implementation for Symfony applications. The facade pattern is used to provide a simplified interface to a complex subsystem. In this case, the facade interacts with a container to manage dependencies.

Installation
------------

[](#installation)

To install the package, use Composer:

```
composer require flawlol/facade
```

Usage
-----

[](#usage)

Defining a Facade

To define a facade, create a class that extends the `Facade` abstract class and implements the `getFacadeAccessor` method. This method should return the name of the service in the container that the facade will interact with.

```
