Skip to content

Commit

Permalink
Se mueve clase Object a AbstractObject para compatibilidad con PHP 7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
estebandelaf committed Jul 27, 2019
1 parent 94d3bf0 commit d1afc1a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions lib/Object.php → lib/AbstractObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
/**
* Clase abstracta que será hederada por las clases del SDK
* @author Esteban De La Fuente Rubio, DeLaF (esteban[at]sasco.cl)
* @version 2017-10-12
* @version 2019-07-27
*/
abstract class Object
abstract class AbstractObject
{

/**
Expand Down
4 changes: 2 additions & 2 deletions lib/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
/**
* Clase principal con el cliente de Flow.cl
* @author Esteban De La Fuente Rubio, DeLaF (esteban[at]sasco.cl)
* @version 2019-06-18
* @version 2019-07-27
*/
class Client extends Object
class Client extends AbstractObject
{

private $_url = [
Expand Down
4 changes: 2 additions & 2 deletions lib/Client/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
/**
* Clase con la respuesta del servicio web
* @author Esteban De La Fuente Rubio, DeLaF (esteban[at]sasco.cl)
* @version 2017-10-12
* @version 2019-07-27
*/
class Response extends \sasco\FlowCL\Object
class Response extends \sasco\FlowCL\AbstractObject
{

protected $status; ///< Estado de la respuesta (con su código)
Expand Down
4 changes: 2 additions & 2 deletions lib/Payment/Order.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
/**
* Clase que representa una orden de pago de Flow.cl
* @author Esteban De La Fuente Rubio, DeLaF (esteban[at]sasco.cl)
* @version 2019-06-18
* @version 2019-07-27
*/
class Order extends \sasco\FlowCL\Object
class Order extends \sasco\FlowCL\AbstractObject
{

// atributos obligatorios para crear una orden
Expand Down

0 comments on commit d1afc1a

Please sign in to comment.