Packages

object Domain

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Domain
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class NopStmt(attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  2. final case class PhpAliasAdaptation(traitName: Option[PhpNameExpr], methodName: PhpNameExpr, newModifier: Option[String], newName: Option[PhpNameExpr], attributes: PhpAttributes) extends PhpTraitUseAdaptation with Product with Serializable
  3. final case class PhpArg(expr: PhpExpr, parameterName: Option[String], byRef: Boolean, unpack: Boolean, attributes: PhpAttributes) extends PhpArgument with Product with Serializable
  4. sealed trait PhpArgument extends PhpNode
  5. final case class PhpArrayDimFetchExpr(variable: PhpExpr, dimension: Option[PhpExpr], attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  6. final case class PhpArrayExpr(items: List[Option[PhpArrayItem]], attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  7. final case class PhpArrayItem(key: Option[PhpExpr], value: PhpExpr, byRef: Boolean, unpack: Boolean, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  8. final case class PhpAssignment(assignOp: String, target: PhpExpr, source: PhpExpr, isRefAssign: Boolean, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  9. final case class PhpAttributes(lineNumber: Option[Integer], kind: Option[Int]) extends Product with Serializable
  10. final case class PhpBinaryOp(operator: String, left: PhpExpr, right: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  11. final case class PhpBreakStmt(num: Option[Int], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  12. final case class PhpCallExpr(target: Option[PhpExpr], methodName: PhpExpr, args: Seq[PhpArgument], isNullSafe: Boolean, isStatic: Boolean, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  13. final case class PhpCaseStmt(condition: Option[PhpExpr], stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmtWithBody with Product with Serializable
  14. final case class PhpCast(typ: String, expr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  15. final case class PhpCatchStmt(types: List[PhpNameExpr], variable: Option[PhpExpr], stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmtWithBody with Product with Serializable
  16. final case class PhpClassConstFetchExpr(className: PhpExpr, constantName: Option[PhpNameExpr], attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  17. final case class PhpClassLikeStmt(name: Option[PhpNameExpr], modifiers: List[String], extendsNames: List[PhpNameExpr], implementedInterfaces: List[PhpNameExpr], stmts: List[PhpStmt], classLikeType: String, scalarType: Option[PhpNameExpr], hasConstructor: Boolean, attributes: PhpAttributes) extends PhpStmtWithBody with Product with Serializable
  18. final case class PhpCloneExpr(expr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  19. final case class PhpClosureExpr(params: List[PhpParam], stmts: List[PhpStmt], returnType: Option[PhpNameExpr], uses: List[PhpClosureUse], isStatic: Boolean, returnByRef: Boolean, isArrowFunc: Boolean, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  20. final case class PhpClosureUse(variable: PhpExpr, byRef: Boolean, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  21. final case class PhpConstDeclaration(name: PhpNameExpr, value: PhpExpr, namespacedName: Option[PhpNameExpr], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  22. final case class PhpConstFetchExpr(name: PhpNameExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  23. final case class PhpConstStmt(modifiers: List[String], consts: List[PhpConstDeclaration], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  24. final case class PhpContinueStmt(num: Option[Int], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  25. final case class PhpDeclareItem(key: PhpNameExpr, value: PhpExpr, attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  26. final case class PhpDeclareStmt(declares: Seq[PhpDeclareItem], stmts: Option[List[PhpStmt]], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  27. final case class PhpDoStmt(cond: PhpExpr, stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmtWithBody with Product with Serializable
  28. final case class PhpEchoStmt(exprs: Seq[PhpExpr], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  29. final case class PhpElseIfStmt(cond: PhpExpr, stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmtWithBody with Product with Serializable
  30. final case class PhpElseStmt(stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmtWithBody with Product with Serializable
  31. final case class PhpEmptyExpr(expr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  32. final case class PhpEncapsed(parts: Seq[PhpExpr], attributes: PhpAttributes) extends PhpScalar with Product with Serializable
  33. final case class PhpEnumCaseStmt(name: PhpNameExpr, expr: Option[PhpExpr], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  34. final case class PhpErrorSuppressExpr(expr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  35. final case class PhpEvalExpr(expr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  36. final case class PhpExitExpr(expr: Option[PhpExpr], attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  37. sealed trait PhpExpr extends PhpStmt
  38. final case class PhpFile(children: List[PhpStmt]) extends PhpNode with Product with Serializable
  39. final case class PhpFinallyStmt(stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmtWithBody with Product with Serializable
  40. final case class PhpFloat(value: String, attributes: PhpAttributes) extends PhpSimpleScalar with Product with Serializable
  41. final case class PhpForStmt(inits: List[PhpExpr], conditions: List[PhpExpr], loopExprs: List[PhpExpr], stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmtWithBody with Product with Serializable
  42. final case class PhpForeachStmt(iterExpr: PhpExpr, keyVar: Option[PhpExpr], valueVar: PhpExpr, assignByRef: Boolean, stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmtWithBody with Product with Serializable
  43. final case class PhpGlobalStmt(vars: List[PhpExpr], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  44. final case class PhpGotoStmt(label: PhpNameExpr, attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  45. final case class PhpGroupUseStmt(prefix: PhpNameExpr, uses: List[PhpUseUse], useType: PhpUseType, attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  46. final case class PhpHaltCompilerStmt(attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  47. final case class PhpIfStmt(cond: PhpExpr, stmts: List[PhpStmt], elseIfs: List[PhpElseIfStmt], elseStmt: Option[PhpElseStmt], attributes: PhpAttributes) extends PhpStmtWithBody with Product with Serializable
  48. final case class PhpIncludeExpr(expr: PhpExpr, includeType: String, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  49. final case class PhpInstanceOfExpr(expr: PhpExpr, className: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  50. final case class PhpInt(value: String, attributes: PhpAttributes) extends PhpSimpleScalar with Product with Serializable
  51. final case class PhpIsset(vars: Seq[PhpExpr], attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  52. final case class PhpLabelStmt(label: PhpNameExpr, attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  53. final case class PhpListExpr(items: List[Option[PhpArrayItem]], attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  54. final case class PhpMatchArm(conditions: List[PhpExpr], body: PhpExpr, isDefault: Boolean, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  55. final case class PhpMatchExpr(condition: PhpExpr, matchArms: List[PhpMatchArm], attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  56. final case class PhpMethodDecl(name: PhpNameExpr, params: Seq[PhpParam], modifiers: List[String], returnType: Option[PhpNameExpr], stmts: List[PhpStmt], returnByRef: Boolean, namespacedName: Option[PhpNameExpr], isClassMethod: Boolean, attributes: PhpAttributes) extends PhpStmtWithBody with Product with Serializable
  57. final case class PhpNameExpr(name: String, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  58. final case class PhpNamespaceStmt(name: Option[PhpNameExpr], stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmtWithBody with Product with Serializable
  59. final case class PhpNewExpr(className: PhpNode, args: List[PhpArgument], attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  60. sealed trait PhpNode extends AnyRef
  61. final case class PhpParam(name: String, paramType: Option[PhpNameExpr], byRef: Boolean, isVariadic: Boolean, default: Option[PhpExpr], flags: Int, attributes: PhpAttributes) extends PhpNode with Product with Serializable
  62. final case class PhpPrecedenceAdaptation(traitName: PhpNameExpr, methodName: PhpNameExpr, insteadOf: List[PhpNameExpr], attributes: PhpAttributes) extends PhpTraitUseAdaptation with Product with Serializable
  63. final case class PhpPrint(expr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  64. final case class PhpPropertyFetchExpr(expr: PhpExpr, name: PhpExpr, isNullsafe: Boolean, isStatic: Boolean, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  65. final case class PhpPropertyStmt(modifiers: List[String], variables: List[PhpPropertyValue], typeName: Option[PhpNameExpr], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  66. final case class PhpPropertyValue(name: PhpNameExpr, defaultValue: Option[PhpExpr], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  67. final case class PhpReturnStmt(expr: Option[PhpExpr], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  68. sealed trait PhpScalar extends PhpExpr
  69. final case class PhpShellExecExpr(parts: PhpEncapsed, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  70. sealed abstract class PhpSimpleScalar extends PhpScalar
  71. final case class PhpStaticStmt(vars: List[PhpStaticVar], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  72. final case class PhpStaticVar(variable: PhpVariable, defaultValue: Option[PhpExpr], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  73. sealed trait PhpStmt extends PhpNode
  74. sealed trait PhpStmtWithBody extends PhpStmt
  75. final case class PhpString(value: String, attributes: PhpAttributes) extends PhpSimpleScalar with Product with Serializable
  76. final case class PhpSwitchStmt(condition: PhpExpr, cases: List[PhpCaseStmt], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  77. final case class PhpTernaryOp(condition: PhpExpr, thenExpr: Option[PhpExpr], elseExpr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  78. final case class PhpThrowExpr(expr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  79. sealed trait PhpTraitUseAdaptation extends PhpStmt
  80. final case class PhpTraitUseStmt(traits: List[PhpNameExpr], adaptations: List[PhpTraitUseAdaptation], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  81. final case class PhpTryStmt(stmts: List[PhpStmt], catches: List[PhpCatchStmt], finallyStmt: Option[PhpFinallyStmt], attributes: PhpAttributes) extends PhpStmtWithBody with Product with Serializable
  82. final case class PhpUnaryOp(operator: String, expr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  83. final case class PhpUnsetStmt(vars: List[PhpExpr], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  84. final case class PhpUseStmt(uses: List[PhpUseUse], useType: PhpUseType, attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  85. final case class PhpUseUse(originalName: PhpNameExpr, alias: Option[PhpNameExpr], useType: PhpUseType, attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  86. final case class PhpVariable(value: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  87. final case class PhpVariadicPlaceholder(attributes: PhpAttributes) extends PhpArgument with Product with Serializable
  88. final case class PhpWhileStmt(cond: PhpExpr, stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmtWithBody with Product with Serializable
  89. final case class PhpYieldExpr(key: Option[PhpExpr], value: Option[PhpExpr], attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  90. final case class PhpYieldFromExpr(expr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val ConstructorMethodName: String
  5. val InstanceMethodDelimiter: String
  6. val NamespaceDelimiter: String
  7. val StaticMethodDelimiter: String
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def fromJson(jsonInput: Value): PhpFile
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  24. object ClassLikeTypes
  25. object PhpArg extends Serializable
  26. object PhpAssignment extends Serializable
  27. object PhpAttributes extends Serializable
  28. object PhpBinaryOp extends Serializable
  29. object PhpCast extends Serializable
  30. object PhpDomainTypeConstants
  31. case object PhpIncludeType extends Product with Serializable
  32. object PhpModifiers
  33. object PhpOperators
  34. object PhpString extends Serializable
  35. object PhpUnaryOp extends Serializable
  36. case object PhpUseType extends Product with Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped