From 2be4f5c984a58b9e6f552364aaf9c96a073cff55 Mon Sep 17 00:00:00 2001 From: Juan Cristobal Date: Sun, 15 Oct 2023 15:09:42 +0200 Subject: [PATCH] Changes to be committed: modified: README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index af9e7de..5a5338a 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@



- +

@@ -25,6 +25,10 @@

+# Fluent Interface + +The `FluentInterface` class is a PHP tool that provides a fluent interface for chaining methods and controlling the flow of operations concisely in PHP fluentlications. Its main purpose is to improve code readability, allowing you to chain a series of methods coherently and easy to follow. This is the greatest potential of this interface, it is no longer necessary to repeatedly return the $this object, now `FluentInterface` handles it automatically for you. + ## 📦 Installation You can also use [Composer](https://getcomposer.org/) to install Axm in your project quickly. @@ -33,10 +37,6 @@ You can also use [Composer](https://getcomposer.org/) to install Axm in your pro composer require axm/fluent ``` -# Fluent Interface - -The `FluentInterface` class is a PHP tool that provides a fluent interface for chaining methods and controlling the flow of operations concisely in PHP fluentlications. Its main purpose is to improve code readability, allowing you to chain a series of methods coherently and easy to follow. This is the greatest potential of this interface, it is no longer necessary to repeatedly return the $this object, now `FluentInterface` handles it automatically for you. - ## Method Chaining You can chain multiple methods, which facilitates executing multiple operations sequentially. For example: