├── .gitignore ├── Attribute.php ├── ClassOnObject.php ├── CommaParameterList.php ├── ConsistentTypeError.php ├── ConstructorPropertyPromotion.php ├── FunctionOverridingClass.php ├── FunctionOverridingPrivate.php ├── FunctionOverridingTrait.php ├── HelloWorld.php ├── MatchExpression.php ├── MixedType.php ├── NamedArgument.php ├── NewStringFunction.php ├── NonCapturingCatches.php ├── NullsafeOperator.php ├── StringableInterface.php ├── ThrowExpression.php └── UnionTypes.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml -------------------------------------------------------------------------------- /Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-php-8/HEAD/Attribute.php -------------------------------------------------------------------------------- /ClassOnObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-php-8/HEAD/ClassOnObject.php -------------------------------------------------------------------------------- /CommaParameterList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-php-8/HEAD/CommaParameterList.php -------------------------------------------------------------------------------- /ConsistentTypeError.php: -------------------------------------------------------------------------------- 1 |