├── .travis.yml ├── LICENSE ├── README.md ├── bin ├── php-to-zephir └── php-to-zephir.php ├── composer.json ├── composer.lock ├── phpunit.xml ├── src └── PhpToZephir │ ├── ClassCollector.php │ ├── ClassCollectorFactory.php │ ├── CodeCollector │ ├── CodeCollectorInterface.php │ ├── DirectoryCodeCollector.php │ ├── FileCodeCollector.php │ └── StringCodeCollector.php │ ├── CodeValidator.php │ ├── Command │ ├── Convert.php │ └── ConvertFactory.php │ ├── Converter │ ├── ClassInformation.php │ ├── ClassInformationFactory.php │ ├── ClassMetadata.php │ ├── Converter.php │ ├── ConverterFactory.php │ ├── Dispatcher.php │ ├── DispatcherFactory.php │ ├── Manipulator │ │ ├── ArrayDto.php │ │ ├── ArrayManipulator.php │ │ ├── AssignManipulator.php │ │ └── ClassManipulator.php │ ├── PrecedenceMap.php │ ├── Printer │ │ ├── ArgPrinter.php │ │ ├── CommaSeparatedPrinter.php │ │ ├── ConstPrinter.php │ │ ├── EncapsListPrinter.php │ │ ├── Expr │ │ │ ├── ArrayDimFetchPrinter.php │ │ │ ├── ArrayItemPrinter.php │ │ │ ├── ArrayPrinter.php │ │ │ ├── AssignOp │ │ │ │ ├── BitwiseAndPrinter.php │ │ │ │ ├── BitwiseOrPrinter.php │ │ │ │ ├── BitwiseXorPrinter.php │ │ │ │ ├── ConcatPrinter.php │ │ │ │ ├── DivPrinter.php │ │ │ │ ├── MinusPrinter.php │ │ │ │ ├── ModPrinter.php │ │ │ │ ├── MulPrinter.php │ │ │ │ ├── PlusPrinter.php │ │ │ │ ├── PowPrinter.php │ │ │ │ ├── ShiftLeftPrinter.php │ │ │ │ └── ShiftRightPrinter.php │ │ │ ├── AssignPrinter.php │ │ │ ├── AssignRefPrinter.php │ │ │ ├── BinaryOp │ │ │ │ ├── BitwiseAndPrinter.php │ │ │ │ ├── BitwiseOrPrinter.php │ │ │ │ ├── BitwiseXorPrinter.php │ │ │ │ ├── BooleanAndPrinter.php │ │ │ │ ├── BooleanOrPrinter.php │ │ │ │ ├── ConcatPrinter.php │ │ │ │ ├── DivPrinter.php │ │ │ │ ├── EqualPrinter.php │ │ │ │ ├── GreaterOrEqualPrinter.php │ │ │ │ ├── GreaterPrinter.php │ │ │ │ ├── IdenticalPrinter.php │ │ │ │ ├── LogicalAndPrinter.php │ │ │ │ ├── LogicalOrPrinter.php │ │ │ │ ├── LogicalXorPrinter.php │ │ │ │ ├── MinusPrinter.php │ │ │ │ ├── ModPrinter.php │ │ │ │ ├── MulPrinter.php │ │ │ │ ├── NotEqualPrinter.php │ │ │ │ ├── NotIdenticalPrinter.php │ │ │ │ ├── PlusPrinter.php │ │ │ │ ├── PowPrinter.php │ │ │ │ ├── ShiftLeftPrinter.php │ │ │ │ ├── ShiftRightPrinter.php │ │ │ │ ├── SmallerOrEqualPrinter.php │ │ │ │ └── SmallerPrinter.php │ │ │ ├── BitwiseNotPrinter.php │ │ │ ├── BooleanNotPrinter.php │ │ │ ├── Cast │ │ │ │ ├── ArrayPrinter.php │ │ │ │ ├── BoolPrinter.php │ │ │ │ ├── DoublePrinter.php │ │ │ │ ├── IntPrinter.php │ │ │ │ ├── ObjectPrinter.php │ │ │ │ ├── StringPrinter.php │ │ │ │ └── UnsetPrinter.php │ │ │ ├── ClassConstFetchPrinter.php │ │ │ ├── ClonePrinter.php │ │ │ ├── ClosurePrinter.php │ │ │ ├── ClosureUsePrinter.php │ │ │ ├── ConstFetchPrinter.php │ │ │ ├── EmptyPrinter.php │ │ │ ├── ErrorSuppressPrinter.php │ │ │ ├── EvalPrinter.php │ │ │ ├── ExitPrinter.php │ │ │ ├── FuncCallPrinter.php │ │ │ ├── IncludePrinter.php │ │ │ ├── InstanceofPrinter.php │ │ │ ├── IssetPrinter.php │ │ │ ├── MethodCallPrinter.php │ │ │ ├── NewPrinter.php │ │ │ ├── PostDecPrinter.php │ │ │ ├── PostIncPrinter.php │ │ │ ├── PreDecPrinter.php │ │ │ ├── PreIncPrinter.php │ │ │ ├── PrintPrinter.php │ │ │ ├── PropertyFetchPrinter.php │ │ │ ├── ShellExecPrinter.php │ │ │ ├── StaticCallPrinter.php │ │ │ ├── StaticPropertyFetchPrinter.php │ │ │ ├── TernaryPrinter.php │ │ │ ├── UnaryMinusPrinter.php │ │ │ ├── UnaryPlusPrinter.php │ │ │ ├── VariablePrinter.php │ │ │ └── YieldPrinter.php │ │ ├── ImplodePrinter.php │ │ ├── InfixOpPrinter.php │ │ ├── ModifiersPrinter.php │ │ ├── Name │ │ │ ├── FullyQualifiedPrinter.php │ │ │ └── RelativePrinter.php │ │ ├── NamePrinter.php │ │ ├── ObjectPropertyPrinter.php │ │ ├── ParamPrinter.php │ │ ├── PostfixOpPrinter.php │ │ ├── PrecPrinter.php │ │ ├── PrefixOpPrinter.php │ │ ├── Scalar │ │ │ ├── DNumberPrinter.php │ │ │ ├── EncapsedPrinter.php │ │ │ ├── LNumberPrinter.php │ │ │ ├── MagicConst │ │ │ │ ├── ClassPrinter.php │ │ │ │ ├── DirPrinter.php │ │ │ │ ├── FilePrinter.php │ │ │ │ ├── FunctionPrinter.php │ │ │ │ ├── LinePrinter.php │ │ │ │ ├── MethodPrinter.php │ │ │ │ └── NamespacePrinter.php │ │ │ └── StringPrinter.php │ │ ├── Stmt │ │ │ ├── BreakPrinter.php │ │ │ ├── CasePrinter.php │ │ │ ├── CatchPrinter.php │ │ │ ├── ClassConstPrinter.php │ │ │ ├── ClassMethodPrinter.php │ │ │ ├── ClassPrinter.php │ │ │ ├── ConstPrinter.php │ │ │ ├── ContinuePrinter.php │ │ │ ├── DeclareDeclarePrinter.php │ │ │ ├── DeclarePrinter.php │ │ │ ├── DoPrinter.php │ │ │ ├── EchoPrinter.php │ │ │ ├── ElseIfPrinter.php │ │ │ ├── ElsePrinter.php │ │ │ ├── ForPrinter.php │ │ │ ├── ForeachPrinter.php │ │ │ ├── FunctionPrinter.php │ │ │ ├── GlobalPrinter.php │ │ │ ├── IfPrinter.php │ │ │ ├── InterfacePrinter.php │ │ │ ├── LabelPrinter.php │ │ │ ├── NamespacePrinter.php │ │ │ ├── PropertyPrinter.php │ │ │ ├── PropertyPropertyPrinter.php │ │ │ ├── ReturnPrinter.php │ │ │ ├── StaticPrinter.php │ │ │ ├── StaticVarPrinter.php │ │ │ ├── SwitchPrinter.php │ │ │ ├── ThrowPrinter.php │ │ │ ├── TraitPrinter.php │ │ │ ├── TraitUseAdaptation │ │ │ │ ├── AliasPrinter.php │ │ │ │ └── PrecedencePrinter.php │ │ │ ├── TraitUsePrinter.php │ │ │ ├── TryCatchPrinter.php │ │ │ ├── UnsetPrinter.php │ │ │ ├── UsePrinter.php │ │ │ ├── UseUsePrinter.php │ │ │ └── WhilePrinter.php │ │ ├── StmtsPrinter.php │ │ └── VarOrNewExprPrinter.php │ ├── PrinterCollection.php │ └── SimplePrinter.php │ ├── Engine.php │ ├── EngineFactory.php │ ├── FileWriter.php │ ├── Logger.php │ ├── NodeFetcher.php │ ├── Render │ ├── FileRender.php │ ├── RenderInterface.php │ └── StringRender.php │ ├── ReservedWordReplacer.php │ ├── Service │ └── CliFactory.php │ └── TypeFinder.php └── tests ├── Bootstrap.php ├── Converter ├── Code │ ├── ArrayManipulation │ │ ├── ArrayDimAssignObjectPropertieTest.php │ │ ├── ArrayDimScalarWithAssignLetTest.php │ │ ├── ArrayNestedTest.php │ │ ├── ArrayPlusTest.php │ │ ├── Both │ │ │ └── AssignLeftWithArrayDimLeftRightTest.php │ │ ├── Bug1Test.php │ │ ├── Bug2Test.php │ │ ├── DeclareArrayWithAssignInTernaryOperationTest.php │ │ ├── FuncCallInArrayTest.php │ │ ├── Left │ │ │ ├── ArrayDimLeftAssignArrayDimLetTest.php │ │ │ ├── ArrayDimLeftWithScalarAssignScalarTest.php │ │ │ └── ArrayDimLetWithAssignScalarTest.php │ │ └── TmpArrayInMethodCallTest.php │ ├── Concat │ │ └── ConcatWithCallFuncWithTmpVarTest.php │ ├── Condition │ │ ├── IfStmt │ │ │ ├── IfElseConditionTest.php │ │ │ ├── IfWithAssignementArrayDimInCondition │ │ │ │ └── IncrementInArrayDimTest.php │ │ │ ├── IfWithAssignementArrayDimInConditionTest.php │ │ │ ├── IfWithAssignementInConditionTest.php │ │ │ ├── IfWithCreateTmpVarInConditionTest.php │ │ │ ├── IfWithVarModificationInLeftTest.php │ │ │ ├── InstanceOfTest.php │ │ │ └── IsWithYodaConditionTest.php │ │ ├── SwitchStmt │ │ │ ├── SwitchWithConditionTest.php │ │ │ └── SwitchWithEvaluateTest.php │ │ └── TernaryOperatorTest.php │ ├── FuntionCall │ │ └── FunctionCallWithAssignInsideTest.php │ ├── Loops │ │ ├── ContinueStmtTest.php │ │ ├── ForStmt │ │ │ ├── ForEqualsTest.php │ │ │ ├── ForMinusTest.php │ │ │ ├── ForWithBooleanContinueTest.php │ │ │ ├── ForWithBreakOutsideTest.php │ │ │ ├── ForWithCountTest.php │ │ │ ├── ForWithIteratorTest.php │ │ │ ├── ForWithMutipleAssignTest.php │ │ │ └── ForWithoutStmtTest.php │ │ ├── ForeachStmt │ │ │ └── SimpleForeachTest.php │ │ └── WhileStmt │ │ │ ├── ListInWhileTest.php │ │ │ └── SimpleWhileTest.php │ ├── Method │ │ ├── AssignInFuncCallTest.php │ │ ├── AssignInMethodCallTest.php │ │ ├── CallUserFuncArrayTest.php │ │ ├── ListTest.php │ │ ├── MethodExistTest.php │ │ ├── PregMatchTest.php │ │ └── UnsetTest.php │ ├── Oop │ │ ├── AttributeTest.php │ │ ├── DynamicInstanceTest.php │ │ ├── ExtendsAndImplementTest.php │ │ ├── InstanceTest.php │ │ ├── StaticPropertyTest.php │ │ └── UnkownInterfaceTest.php │ ├── Simple │ │ ├── AnonymeFunctionStmtTest.php │ │ ├── CastTest.php │ │ ├── ReturnStmtTest.php │ │ ├── SilentErrorTest.php │ │ ├── SimpleAssignTest.php │ │ └── StringConcatTest.php │ ├── StrongType │ │ ├── FunctionStmt │ │ │ ├── MethodTypeUndefinedTest.php │ │ │ ├── MethodTypeWithObjectTypeTest.php │ │ │ └── MethodTypeWithScalarTypeTest.php │ │ └── ReturnStmt │ │ │ ├── DefinedInInterfaceReturnTest.php │ │ │ ├── DefinedTypeReturnTest.php │ │ │ └── UndefinedTypeReturnTest.php │ ├── TryCatch │ │ └── SimpleTryCatchTest.php │ └── Variable │ │ └── StaticVarTest.php └── ConverterBaseTest.php └── PhpToZephir └── Tests ├── CodeCollector ├── DirectoryCodeCollector │ ├── GetCodeTest.php │ ├── myDirTest │ │ ├── afile.php │ │ └── recursive │ │ │ └── recursive.php │ └── test.zep ├── FileCodeCollector │ ├── GetCodeTest.php │ └── test.zep └── StringCodeCollector │ └── GetCodeTest.php ├── Command ├── Convert │ └── ExecuteTest.php └── Convertactory │ └── GetInstanceTest.php ├── EngineFactory └── GetInstanceTest.php ├── Render ├── FileRender │ └── RenderTest.php └── StringRender │ └── RenderTest.php └── Service └── CliFactory └── GetInstanceTest.php /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/README.md -------------------------------------------------------------------------------- /bin/php-to-zephir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/bin/php-to-zephir -------------------------------------------------------------------------------- /bin/php-to-zephir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/bin/php-to-zephir.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/PhpToZephir/ClassCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/ClassCollector.php -------------------------------------------------------------------------------- /src/PhpToZephir/ClassCollectorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/ClassCollectorFactory.php -------------------------------------------------------------------------------- /src/PhpToZephir/CodeCollector/CodeCollectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/CodeCollector/CodeCollectorInterface.php -------------------------------------------------------------------------------- /src/PhpToZephir/CodeCollector/DirectoryCodeCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/CodeCollector/DirectoryCodeCollector.php -------------------------------------------------------------------------------- /src/PhpToZephir/CodeCollector/FileCodeCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/CodeCollector/FileCodeCollector.php -------------------------------------------------------------------------------- /src/PhpToZephir/CodeCollector/StringCodeCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/CodeCollector/StringCodeCollector.php -------------------------------------------------------------------------------- /src/PhpToZephir/CodeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/CodeValidator.php -------------------------------------------------------------------------------- /src/PhpToZephir/Command/Convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Command/Convert.php -------------------------------------------------------------------------------- /src/PhpToZephir/Command/ConvertFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Command/ConvertFactory.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/ClassInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/ClassInformation.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/ClassInformationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/ClassInformationFactory.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/ClassMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/ClassMetadata.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Converter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/ConverterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/ConverterFactory.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Dispatcher.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/DispatcherFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/DispatcherFactory.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Manipulator/ArrayDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Manipulator/ArrayDto.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Manipulator/ArrayManipulator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Manipulator/ArrayManipulator.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Manipulator/AssignManipulator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Manipulator/AssignManipulator.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Manipulator/ClassManipulator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Manipulator/ClassManipulator.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/PrecedenceMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/PrecedenceMap.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/ArgPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/ArgPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/CommaSeparatedPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/CommaSeparatedPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/ConstPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/ConstPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/EncapsListPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/EncapsListPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/ArrayDimFetchPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/ArrayDimFetchPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/ArrayItemPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/ArrayItemPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/ArrayPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/ArrayPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/AssignOp/BitwiseAndPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/AssignOp/BitwiseAndPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/AssignOp/BitwiseOrPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/AssignOp/BitwiseOrPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/AssignOp/BitwiseXorPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/AssignOp/BitwiseXorPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/AssignOp/ConcatPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/AssignOp/ConcatPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/AssignOp/DivPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/AssignOp/DivPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/AssignOp/MinusPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/AssignOp/MinusPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/AssignOp/ModPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/AssignOp/ModPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/AssignOp/MulPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/AssignOp/MulPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/AssignOp/PlusPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/AssignOp/PlusPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/AssignOp/PowPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/AssignOp/PowPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/AssignOp/ShiftLeftPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/AssignOp/ShiftLeftPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/AssignOp/ShiftRightPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/AssignOp/ShiftRightPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/AssignPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/AssignPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/AssignRefPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/AssignRefPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/BitwiseAndPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/BitwiseAndPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/BitwiseOrPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/BitwiseOrPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/BitwiseXorPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/BitwiseXorPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/BooleanAndPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/BooleanAndPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/BooleanOrPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/BooleanOrPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/ConcatPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/ConcatPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/DivPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/DivPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/EqualPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/EqualPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/GreaterOrEqualPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/GreaterOrEqualPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/GreaterPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/GreaterPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/IdenticalPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/IdenticalPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/LogicalAndPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/LogicalAndPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/LogicalOrPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/LogicalOrPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/LogicalXorPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/LogicalXorPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/MinusPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/MinusPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/ModPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/ModPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/MulPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/MulPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/NotEqualPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/NotEqualPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/NotIdenticalPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/NotIdenticalPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/PlusPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/PlusPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/PowPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/PowPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/ShiftLeftPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/ShiftLeftPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/ShiftRightPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/ShiftRightPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/SmallerOrEqualPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/SmallerOrEqualPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BinaryOp/SmallerPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BinaryOp/SmallerPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BitwiseNotPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BitwiseNotPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/BooleanNotPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/BooleanNotPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/Cast/ArrayPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/Cast/ArrayPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/Cast/BoolPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/Cast/BoolPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/Cast/DoublePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/Cast/DoublePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/Cast/IntPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/Cast/IntPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/Cast/ObjectPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/Cast/ObjectPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/Cast/StringPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/Cast/StringPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/Cast/UnsetPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/Cast/UnsetPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/ClassConstFetchPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/ClassConstFetchPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/ClonePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/ClonePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/ClosurePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/ClosurePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/ClosureUsePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/ClosureUsePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/ConstFetchPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/ConstFetchPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/EmptyPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/EmptyPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/ErrorSuppressPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/ErrorSuppressPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/EvalPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/EvalPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/ExitPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/ExitPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/FuncCallPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/FuncCallPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/IncludePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/IncludePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/InstanceofPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/InstanceofPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/IssetPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/IssetPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/MethodCallPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/MethodCallPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/NewPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/NewPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/PostDecPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/PostDecPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/PostIncPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/PostIncPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/PreDecPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/PreDecPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/PreIncPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/PreIncPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/PrintPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/PrintPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/PropertyFetchPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/PropertyFetchPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/ShellExecPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/ShellExecPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/StaticCallPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/StaticCallPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/StaticPropertyFetchPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/StaticPropertyFetchPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/TernaryPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/TernaryPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/UnaryMinusPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/UnaryMinusPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/UnaryPlusPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/UnaryPlusPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/VariablePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/VariablePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Expr/YieldPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Expr/YieldPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/ImplodePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/ImplodePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/InfixOpPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/InfixOpPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/ModifiersPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/ModifiersPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Name/FullyQualifiedPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Name/FullyQualifiedPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Name/RelativePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Name/RelativePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/NamePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/NamePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/ObjectPropertyPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/ObjectPropertyPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/ParamPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/ParamPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/PostfixOpPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/PostfixOpPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/PrecPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/PrecPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/PrefixOpPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/PrefixOpPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Scalar/DNumberPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Scalar/DNumberPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Scalar/EncapsedPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Scalar/EncapsedPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Scalar/LNumberPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Scalar/LNumberPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Scalar/MagicConst/ClassPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Scalar/MagicConst/ClassPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Scalar/MagicConst/DirPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Scalar/MagicConst/DirPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Scalar/MagicConst/FilePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Scalar/MagicConst/FilePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Scalar/MagicConst/FunctionPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Scalar/MagicConst/FunctionPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Scalar/MagicConst/LinePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Scalar/MagicConst/LinePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Scalar/MagicConst/MethodPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Scalar/MagicConst/MethodPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Scalar/MagicConst/NamespacePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Scalar/MagicConst/NamespacePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Scalar/StringPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Scalar/StringPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/BreakPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/BreakPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/CasePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/CasePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/CatchPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/CatchPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/ClassConstPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/ClassConstPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/ClassMethodPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/ClassMethodPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/ClassPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/ClassPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/ConstPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/ConstPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/ContinuePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/ContinuePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/DeclareDeclarePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/DeclareDeclarePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/DeclarePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/DeclarePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/DoPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/DoPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/EchoPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/EchoPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/ElseIfPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/ElseIfPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/ElsePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/ElsePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/ForPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/ForPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/ForeachPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/ForeachPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/FunctionPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/FunctionPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/GlobalPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/GlobalPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/IfPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/IfPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/InterfacePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/InterfacePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/LabelPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/LabelPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/NamespacePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/NamespacePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/PropertyPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/PropertyPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/PropertyPropertyPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/PropertyPropertyPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/ReturnPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/ReturnPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/StaticPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/StaticPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/StaticVarPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/StaticVarPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/SwitchPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/SwitchPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/ThrowPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/ThrowPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/TraitPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/TraitPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/TraitUseAdaptation/AliasPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/TraitUseAdaptation/AliasPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/TraitUseAdaptation/PrecedencePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/TraitUseAdaptation/PrecedencePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/TraitUsePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/TraitUsePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/TryCatchPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/TryCatchPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/UnsetPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/UnsetPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/UsePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/UsePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/UseUsePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/UseUsePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/Stmt/WhilePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/Stmt/WhilePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/StmtsPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/StmtsPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/Printer/VarOrNewExprPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/Printer/VarOrNewExprPrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/PrinterCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/PrinterCollection.php -------------------------------------------------------------------------------- /src/PhpToZephir/Converter/SimplePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Converter/SimplePrinter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Engine.php -------------------------------------------------------------------------------- /src/PhpToZephir/EngineFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/EngineFactory.php -------------------------------------------------------------------------------- /src/PhpToZephir/FileWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/FileWriter.php -------------------------------------------------------------------------------- /src/PhpToZephir/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Logger.php -------------------------------------------------------------------------------- /src/PhpToZephir/NodeFetcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/NodeFetcher.php -------------------------------------------------------------------------------- /src/PhpToZephir/Render/FileRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Render/FileRender.php -------------------------------------------------------------------------------- /src/PhpToZephir/Render/RenderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Render/RenderInterface.php -------------------------------------------------------------------------------- /src/PhpToZephir/Render/StringRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Render/StringRender.php -------------------------------------------------------------------------------- /src/PhpToZephir/ReservedWordReplacer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/ReservedWordReplacer.php -------------------------------------------------------------------------------- /src/PhpToZephir/Service/CliFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/Service/CliFactory.php -------------------------------------------------------------------------------- /src/PhpToZephir/TypeFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/src/PhpToZephir/TypeFinder.php -------------------------------------------------------------------------------- /tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Bootstrap.php -------------------------------------------------------------------------------- /tests/Converter/Code/ArrayManipulation/ArrayDimAssignObjectPropertieTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/ArrayManipulation/ArrayDimAssignObjectPropertieTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/ArrayManipulation/ArrayDimScalarWithAssignLetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/ArrayManipulation/ArrayDimScalarWithAssignLetTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/ArrayManipulation/ArrayNestedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/ArrayManipulation/ArrayNestedTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/ArrayManipulation/ArrayPlusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/ArrayManipulation/ArrayPlusTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/ArrayManipulation/Both/AssignLeftWithArrayDimLeftRightTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/ArrayManipulation/Both/AssignLeftWithArrayDimLeftRightTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/ArrayManipulation/Bug1Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/ArrayManipulation/Bug1Test.php -------------------------------------------------------------------------------- /tests/Converter/Code/ArrayManipulation/Bug2Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/ArrayManipulation/Bug2Test.php -------------------------------------------------------------------------------- /tests/Converter/Code/ArrayManipulation/DeclareArrayWithAssignInTernaryOperationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/ArrayManipulation/DeclareArrayWithAssignInTernaryOperationTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/ArrayManipulation/FuncCallInArrayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/ArrayManipulation/FuncCallInArrayTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/ArrayManipulation/Left/ArrayDimLeftAssignArrayDimLetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/ArrayManipulation/Left/ArrayDimLeftAssignArrayDimLetTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/ArrayManipulation/Left/ArrayDimLeftWithScalarAssignScalarTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/ArrayManipulation/Left/ArrayDimLeftWithScalarAssignScalarTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/ArrayManipulation/Left/ArrayDimLetWithAssignScalarTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/ArrayManipulation/Left/ArrayDimLetWithAssignScalarTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/ArrayManipulation/TmpArrayInMethodCallTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/ArrayManipulation/TmpArrayInMethodCallTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Concat/ConcatWithCallFuncWithTmpVarTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Concat/ConcatWithCallFuncWithTmpVarTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Condition/IfStmt/IfElseConditionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Condition/IfStmt/IfElseConditionTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Condition/IfStmt/IfWithAssignementArrayDimInCondition/IncrementInArrayDimTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Condition/IfStmt/IfWithAssignementArrayDimInCondition/IncrementInArrayDimTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Condition/IfStmt/IfWithAssignementArrayDimInConditionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Condition/IfStmt/IfWithAssignementArrayDimInConditionTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Condition/IfStmt/IfWithAssignementInConditionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Condition/IfStmt/IfWithAssignementInConditionTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Condition/IfStmt/IfWithCreateTmpVarInConditionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Condition/IfStmt/IfWithCreateTmpVarInConditionTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Condition/IfStmt/IfWithVarModificationInLeftTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Condition/IfStmt/IfWithVarModificationInLeftTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Condition/IfStmt/InstanceOfTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Condition/IfStmt/InstanceOfTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Condition/IfStmt/IsWithYodaConditionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Condition/IfStmt/IsWithYodaConditionTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Condition/SwitchStmt/SwitchWithConditionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Condition/SwitchStmt/SwitchWithConditionTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Condition/SwitchStmt/SwitchWithEvaluateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Condition/SwitchStmt/SwitchWithEvaluateTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Condition/TernaryOperatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Condition/TernaryOperatorTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/FuntionCall/FunctionCallWithAssignInsideTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/FuntionCall/FunctionCallWithAssignInsideTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Loops/ContinueStmtTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Loops/ContinueStmtTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Loops/ForStmt/ForEqualsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Loops/ForStmt/ForEqualsTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Loops/ForStmt/ForMinusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Loops/ForStmt/ForMinusTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Loops/ForStmt/ForWithBooleanContinueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Loops/ForStmt/ForWithBooleanContinueTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Loops/ForStmt/ForWithBreakOutsideTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Loops/ForStmt/ForWithBreakOutsideTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Loops/ForStmt/ForWithCountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Loops/ForStmt/ForWithCountTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Loops/ForStmt/ForWithIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Loops/ForStmt/ForWithIteratorTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Loops/ForStmt/ForWithMutipleAssignTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Loops/ForStmt/ForWithMutipleAssignTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Loops/ForStmt/ForWithoutStmtTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Loops/ForStmt/ForWithoutStmtTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Loops/ForeachStmt/SimpleForeachTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Loops/ForeachStmt/SimpleForeachTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Loops/WhileStmt/ListInWhileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Loops/WhileStmt/ListInWhileTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Loops/WhileStmt/SimpleWhileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Loops/WhileStmt/SimpleWhileTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Method/AssignInFuncCallTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Method/AssignInFuncCallTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Method/AssignInMethodCallTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Method/AssignInMethodCallTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Method/CallUserFuncArrayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Method/CallUserFuncArrayTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Method/ListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Method/ListTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Method/MethodExistTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Method/MethodExistTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Method/PregMatchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Method/PregMatchTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Method/UnsetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Method/UnsetTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Oop/AttributeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Oop/AttributeTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Oop/DynamicInstanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Oop/DynamicInstanceTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Oop/ExtendsAndImplementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Oop/ExtendsAndImplementTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Oop/InstanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Oop/InstanceTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Oop/StaticPropertyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Oop/StaticPropertyTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Oop/UnkownInterfaceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Oop/UnkownInterfaceTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Simple/AnonymeFunctionStmtTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Simple/AnonymeFunctionStmtTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Simple/CastTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Simple/CastTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Simple/ReturnStmtTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Simple/ReturnStmtTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Simple/SilentErrorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Simple/SilentErrorTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Simple/SimpleAssignTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Simple/SimpleAssignTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Simple/StringConcatTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Simple/StringConcatTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/StrongType/FunctionStmt/MethodTypeUndefinedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/StrongType/FunctionStmt/MethodTypeUndefinedTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/StrongType/FunctionStmt/MethodTypeWithObjectTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/StrongType/FunctionStmt/MethodTypeWithObjectTypeTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/StrongType/FunctionStmt/MethodTypeWithScalarTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/StrongType/FunctionStmt/MethodTypeWithScalarTypeTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/StrongType/ReturnStmt/DefinedInInterfaceReturnTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/StrongType/ReturnStmt/DefinedInInterfaceReturnTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/StrongType/ReturnStmt/DefinedTypeReturnTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/StrongType/ReturnStmt/DefinedTypeReturnTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/StrongType/ReturnStmt/UndefinedTypeReturnTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/StrongType/ReturnStmt/UndefinedTypeReturnTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/TryCatch/SimpleTryCatchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/TryCatch/SimpleTryCatchTest.php -------------------------------------------------------------------------------- /tests/Converter/Code/Variable/StaticVarTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/Code/Variable/StaticVarTest.php -------------------------------------------------------------------------------- /tests/Converter/ConverterBaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/Converter/ConverterBaseTest.php -------------------------------------------------------------------------------- /tests/PhpToZephir/Tests/CodeCollector/DirectoryCodeCollector/GetCodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/PhpToZephir/Tests/CodeCollector/DirectoryCodeCollector/GetCodeTest.php -------------------------------------------------------------------------------- /tests/PhpToZephir/Tests/CodeCollector/DirectoryCodeCollector/myDirTest/afile.php: -------------------------------------------------------------------------------- 1 | a file -------------------------------------------------------------------------------- /tests/PhpToZephir/Tests/CodeCollector/DirectoryCodeCollector/myDirTest/recursive/recursive.php: -------------------------------------------------------------------------------- 1 | recursive! -------------------------------------------------------------------------------- /tests/PhpToZephir/Tests/CodeCollector/DirectoryCodeCollector/test.zep: -------------------------------------------------------------------------------- 1 | this is a test ! -------------------------------------------------------------------------------- /tests/PhpToZephir/Tests/CodeCollector/FileCodeCollector/GetCodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/PhpToZephir/Tests/CodeCollector/FileCodeCollector/GetCodeTest.php -------------------------------------------------------------------------------- /tests/PhpToZephir/Tests/CodeCollector/FileCodeCollector/test.zep: -------------------------------------------------------------------------------- 1 | this is a test ! -------------------------------------------------------------------------------- /tests/PhpToZephir/Tests/CodeCollector/StringCodeCollector/GetCodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/PhpToZephir/Tests/CodeCollector/StringCodeCollector/GetCodeTest.php -------------------------------------------------------------------------------- /tests/PhpToZephir/Tests/Command/Convert/ExecuteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/PhpToZephir/Tests/Command/Convert/ExecuteTest.php -------------------------------------------------------------------------------- /tests/PhpToZephir/Tests/Command/Convertactory/GetInstanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/PhpToZephir/Tests/Command/Convertactory/GetInstanceTest.php -------------------------------------------------------------------------------- /tests/PhpToZephir/Tests/EngineFactory/GetInstanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/PhpToZephir/Tests/EngineFactory/GetInstanceTest.php -------------------------------------------------------------------------------- /tests/PhpToZephir/Tests/Render/FileRender/RenderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/PhpToZephir/Tests/Render/FileRender/RenderTest.php -------------------------------------------------------------------------------- /tests/PhpToZephir/Tests/Render/StringRender/RenderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/PhpToZephir/Tests/Render/StringRender/RenderTest.php -------------------------------------------------------------------------------- /tests/PhpToZephir/Tests/Service/CliFactory/GetInstanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fezfez/php-to-zephir/HEAD/tests/PhpToZephir/Tests/Service/CliFactory/GetInstanceTest.php --------------------------------------------------------------------------------