Download the PHP package jetcod/data-transport without Composer
On this page you can find all versions of the php package jetcod/data-transport. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jetcod/data-transport
More information about jetcod/data-transport
Files in jetcod/data-transport
Package data-transport
Short Description Efficient PHP Data Transport with DTOs
License MIT
Informations about the package data-transport
Data Transfer Object (DTO)
Overview
Data Transport is a PHP package that provides a simple and efficient way to transport data within your application. With Data Transport, you can easily define and manage your data structures, ensuring that your application's data is well-organized and easy to work with. Get started today and streamline your data transport process with Data Transport!
Check out our documentation for more details.
Installation
To install jetcod/data-transport
, you can use Composer, the dependency manager for PHP. Run the following command in your terminal:
Usage
It is straightforward to employ jetcod/data-transport
. To begin, create a customized data object class that extends Jetcod\DataTransport\AbstractDTO
.
Next, construct your class and inject your array of data into it.
Alternatively, you can assign values to individual class attributes:
In addition to the traditional method of creating a class, you can also utilize the convenient make function to create instances of the class. The make function simplifies the process and provides an alternative way to initialize objects.
By utilizing the data transfer object, one can prevent the occurrence of exceptions when attempting to access an undefined class attribute. In such cases, the data transfer object will consistently return null
.
Additionally, it offers the opportunity to specify custom data types.
Initialization Hook
Starting from version 1.1.2, an init()
method can be defined within any derived class for additional initialization logic. This method, if defined, will be automatically called after the attributes are assigned in the constructor. You can use this method to perform any necessary setup or initialization tasks.
Functions
The following functions are available in the DTO class:
__construct(?array $attributes = [])
The constructor function creates a new instance of the DTO class and initializes it with the given data array.
has(string $key): bool
The has() function checks if the specified key exists in the DTO class data and returns a boolean value.
It works the same as isset()
php built-in function. For example if you have object:
then both functions will produce an identical outcome:
or
toArray()
The toArray() function returns an array representation of the DTO class data.
toJson(int $options = 0)
The toJson() function returns a JSON representation of the DTO class data.
Other than above functions, it has the following magic functions:
Function | Description |
---|---|
__set(string $key, $val) |
sets the value of the specified attribute |
__get(string $key) |
returns the value of the specified attribute |
__isset(string $key) |
determines if the attribute has been set |
__unset(string $key) |
unsets the specified attribute |
License
This project is licensed under the MIT License - see the LICENSE file for details.