Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
ldy
/
wechatKit
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Settings
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 71a63feb
authored
Jul 13, 2020
by
yeran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
1 parent
2a5160a4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
78 additions
and
0 deletions
.idea/workspace.xml
src/Run/BaseRun.php
.idea/workspace.xml
View file @
71a63fe
This diff is collapsed.
Click to expand it.
src/Run/BaseRun.php
0 → 100644
View file @
71a63fe
<?php
/**
* Created by IntelliJ IDEA.
* User: yeran
* Date: 2018/5/14
* Time: 下午4:37
*/
namespace
wechatkit\Run
;
class
BaseRun
{
public
$options
;
public
$authType
=
'O'
;
public
$authorizerAccessToken
;
public
$componentAccessToken
;
public
function
__construct
(
$options
)
{
$this
->
options
=
$options
;
}
/**
* @return mixed
*/
public
function
getOptions
()
{
return
$this
->
options
;
}
/**
* @param mixed $options
*/
public
function
setOptions
(
$options
)
{
$this
->
options
=
$options
;
}
/**
* @return mixed
*/
public
function
getAuthorizerAccessToken
()
{
return
$this
->
authorizerAccessToken
;
}
/**
* @param mixed $authorizerAccessToken
*/
public
function
setAuthorizerAccessToken
(
$authorizerAccessToken
)
{
$this
->
authorizerAccessToken
=
$authorizerAccessToken
;
}
/**
* @return mixed
*/
public
function
getComponentAccessToken
()
{
return
$this
->
componentAccessToken
;
}
/**
* @param mixed $componentAccessToken
*/
public
function
setComponentAccessToken
(
$componentAccessToken
)
{
$this
->
componentAccessToken
=
$componentAccessToken
;
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment