Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
ETH Google Analytics for AMP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
WP Plugins
ETH Google Analytics for AMP
Commits
487b38ea
Commit
487b38ea
authored
9 years ago
by
Erick Hitter
Browse files
Options
Downloads
Patches
Plain Diff
Dummy magic methods, placeholders for now
parent
2ee6ad69
No related branches found
No related tags found
1 merge request
!1
WIP: Initial release
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
eth-amp-analytics-wp.php
+11
-0
11 additions, 0 deletions
eth-amp-analytics-wp.php
with
11 additions
and
0 deletions
eth-amp-analytics-wp.php
+
11
−
0
View file @
487b38ea
...
@@ -39,6 +39,17 @@ class ETH_AMP_Analytics_WP {
...
@@ -39,6 +39,17 @@ class ETH_AMP_Analytics_WP {
return
self
::
$instance
;
return
self
::
$instance
;
}
}
/**
* Dummy magic methods
*/
public
function
__clone
()
{
_doing_it_wrong
(
__FUNCTION__
,
__
(
'Cheatin’ huh?'
,
'eth-amp-analytics-wp'
),
'0.1'
);
}
public
function
__wakeup
()
{
_doing_it_wrong
(
__FUNCTION__
,
__
(
'Cheatin’ huh?'
,
'eth-amp-analytics-wp'
),
'0.1'
);
}
public
function
__isset
(
$key
)
{
_doing_it_wrong
(
__FUNCTION__
,
__
(
'Cheatin’ huh?'
,
'eth-amp-analytics-wp'
),
'0.1'
);
}
public
function
__get
(
$key
)
{
_doing_it_wrong
(
__FUNCTION__
,
__
(
'Cheatin’ huh?'
,
'eth-amp-analytics-wp'
),
'0.1'
);
}
public
function
__set
(
$key
,
$value
)
{
_doing_it_wrong
(
__FUNCTION__
,
__
(
'Cheatin’ huh?'
,
'eth-amp-analytics-wp'
),
'0.1'
);
}
public
function
__unset
(
$key
)
{
_doing_it_wrong
(
__FUNCTION__
,
__
(
'Cheatin’ huh?'
,
'eth-amp-analytics-wp'
),
'0.1'
);
}
public
function
__call
(
$name
=
''
,
$args
=
array
()
)
{
unset
(
$name
,
$args
);
return
null
;
}
/**
/**
* Class properties
* Class properties
*/
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment