Browse
For agents
About
Sendy
/
3.4.5
Sendy
v3.4.5
Switch version
3.4.6
3.4.7
trunk
3.0
3.0.1
3.0.2
3.0.3
3.0.4
3.0.5
3.0.6
3.0.7
3.0.8
3.0.9
3.1.0
3.1.1
3.1.2
3.1.3
3.2.0
3.2.1
3.2.2
3.2.3
3.2.4
3.2.5
3.2.6
3.2.7
All 32 releases
Overview
Code
sendy
/
lib
/
Repositories
/
Repository.php
Repository.php
in Sendy 3.4.5, at lib/Repositories/Repository.php
15 lines
270 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
Sendy
\
WooCommerce
\
Repositories
;
4
5
use
Sendy
\
Api
\
Connection
;
6
use
Sendy
\
WooCommerce
\
ApiClientFactory
;
7
8
abstract
class
Repository
9
{
10
protected
function
connection
(
)
:
Connection
11
{
12
return
ApiClientFactory
::
buildConnectionUsingTokens
(
)
;
13
}
14
}
15