diff --git a/dhscanner-ast.cabal b/dhscanner-ast.cabal
--- a/dhscanner-ast.cabal
+++ b/dhscanner-ast.cabal
@@ -8,7 +8,7 @@
     aims to be a data structure able to represent /multiple/ abstract syntax trees from
     /various/ programming languages. Its main purpose is to serve as the first step for /static code analysis/,
     as part of the [dhscanner](https://github.com/OrenGitHub/dhscanner) framework
-    for CI/CD container security checks. As part of that framework,
+    for CI/CD security code scans. As part of that framework,
     it targets mostly languages used for /cloud native applications/:
     __Python__, __Ruby__, __Php__, __Javascript__, __Typescript__, __Java__ and __Golang__.
     Typically, a file is first parsed with the corresponding native parser of the language it's written in
@@ -22,7 +22,7 @@
     and models both of them as plain sequential code blocks. Every file has exactly one ast that represents it.
     Non Haskell parogrammers note: The ast is /immutable/ (like everything else in Haskell ...)
 
-version:            1.0.8
+version:            1.0.9
 license:            GPL-3.0-only
 license-file:       LICENSE
 author:             OrenGitHub
diff --git a/src/Ast.hs b/src/Ast.hs
--- a/src/Ast.hs
+++ b/src/Ast.hs
@@ -84,6 +84,7 @@
    | ExpNull ExpNullContent
    | ExpCall ExpCallContent
    | ExpBinop ExpBinopContent
+   | ExpAssign ExpAssignContent
    | ExpLambda ExpLambdaContent
    deriving ( Show, Eq, Ord, Generic, ToJSON, FromJSON )
 
@@ -237,6 +238,18 @@
          expBinopRight :: Exp,
          expBinopOperator :: Operator,
          expBinopLocation :: Location
+     }
+     deriving ( Show, Eq, Ord, Generic, ToJSON, FromJSON )
+
+-- |
+-- @since 1.0.9
+-- ( added for better [php support](https://www.php.net/manual/en/language.operators.assignment.php) )
+data ExpAssignContent
+   = ExpAssignContent
+     {
+         expAssignLhs :: Var,
+         expAssignRhs :: Exp,
+         expAssignLocation :: Location
      }
      deriving ( Show, Eq, Ord, Generic, ToJSON, FromJSON )
 
