Browse
For agents
About
Assistant – Every Day Productivity Apps
/
0.3.1
Assistant – Every Day Productivity Apps
v0.3.1
Switch version
1.5.5
trunk
0.1.0
0.2.0
0.2.1
0.2.2
0.3.0
0.3.1
0.4
0.4.1
0.4.2
0.5.0
0.5.1
0.6.0
0.7.0
0.7.0.2
0.7.0.3
0.7.0.4
0.7.0.5
0.7.0.6
0.7.0.7
0.7.0.8
0.7.0.9
0.7.1
1.0
All 71 releases
Overview
Code
assistant
/
backend
/
src
/
System
/
Contracts
/
TransformerAbstract.php
TransformerAbstract.php
in Assistant – Every Day Productivity Apps 0.3.1, at backend/src/System/Contracts/TransformerAbstract.php
17 lines
255 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
namespace
FL
\
Assistant
\
System
\
Contracts
;
4
5
abstract
class
TransformerAbstract
{
6
7
public
function
transform_array
(
$
array
)
{
8
$
transformed
=
[
]
;
9
10
foreach
(
$
array
as
$
item
)
{
11
$
transformed
[
]
=
$
this
(
$
item
)
;
12
}
13
14
return
$
transformed
;
15
}
16
}
17