Skip to content

Commit 0e39710

Browse files
committed
Fixing old names
1 parent f4e0a32 commit 0e39710

File tree

2 files changed

+34
-34
lines changed

2 files changed

+34
-34
lines changed

BundlePhu/View/Helper/BundleLink.php

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?php
22
/**
3-
* Hobo ZF
3+
* BundlePhu
44
*
55
* LICENSE
66
*
77
* This source file is subject to the new BSD license that is bundled
88
* with this package in the file LICENSE. This license can also be viewed
99
* at http://hobodave.com/license.txt
1010
*
11-
* @category Hobo
12-
* @package Hobo_View
11+
* @category BundlePhu
12+
* @package BundlePhu_View
1313
* @subpackage Helper
1414
* @author David Abdemoulaie <[email protected]>
1515
* @copyright Copyright (c) 2010 David Abdemoulaie (http://hobodave.com/)
@@ -19,14 +19,14 @@
1919
/**
2020
* Helper for bundling of all included stylesheets into a single file
2121
*
22-
* @category Hobo
23-
* @package Hobo_View
22+
* @category BundlePhu
23+
* @package BundlePhu_View
2424
* @subpackage Helper
2525
* @author David Abdemoulaie <[email protected]>
2626
* @copyright Copyright (c) 2010 David Abdemoulaie (http://hobodave.com/)
2727
* @license http://hobodave.com/license.txt New BSD License
2828
**/
29-
class Hobo_View_Helper_BundleLink extends Zend_View_Helper_HeadLink
29+
class BundlePhu_View_Helper_BundleLink extends Zend_View_Helper_HeadLink
3030
{
3131
/**
3232
* local Zend_View reference
@@ -39,7 +39,7 @@ class Hobo_View_Helper_BundleLink extends Zend_View_Helper_HeadLink
3939
* Registry key for placeholder
4040
* @var string
4141
*/
42-
protected $_regKey = 'Hobo_View_Helper_BundleLink';
42+
protected $_regKey = 'BundlePhu_View_Helper_BundleLink';
4343

4444
/**
4545
* Local reference to $view->baseUrl()
@@ -126,7 +126,7 @@ public function setView(Zend_View_Interface $view) {
126126
/**
127127
* Proxies to Zend_View_Helper_HeadLink::headLink()
128128
*
129-
* @return Hobo_View_Helper_BundleLink
129+
* @return BundlePhu_View_Helper_BundleLink
130130
*/
131131
public function bundleLink()
132132
{
@@ -139,7 +139,7 @@ public function bundleLink()
139139
* This is where the bundled files are written.
140140
*
141141
* @param string $dir
142-
* @return Hobo_View_Helper_BundleLink
142+
* @return BundlePhu_View_Helper_BundleLink
143143
*/
144144
public function setCacheDir($dir)
145145
{
@@ -155,7 +155,7 @@ public function setCacheDir($dir)
155155
* if $docRoot == '/var/www/foo' then '/css/foo.css' will be found in '/var/www/foo/css/foo.css'
156156
*
157157
* @param string $docRoot
158-
* @return Hobo_View_Helper_BundleLink
158+
* @return BundlePhu_View_Helper_BundleLink
159159
*/
160160
public function setDocRoot($docRoot)
161161
{
@@ -170,7 +170,7 @@ public function setDocRoot($docRoot)
170170
* will be the src for the link tag.
171171
*
172172
* @param string $prefix
173-
* @return Hobo_View_Helper_BundleLink
173+
* @return BundlePhu_View_Helper_BundleLink
174174
*/
175175
public function setUrlPrefix($prefix)
176176
{
@@ -186,7 +186,7 @@ public function setUrlPrefix($prefix)
186186
* replaced with the generated filename.
187187
*
188188
* @param string $command Must contain :filename token
189-
* @return Hobo_View_Helper_BundleLink
189+
* @return BundlePhu_View_Helper_BundleLink
190190
*/
191191
public function setMinifyCommand($command)
192192
{
@@ -202,7 +202,7 @@ public function setMinifyCommand($command)
202202
* A callback, if defined, will take precedence over a minifyCommand.
203203
*
204204
* @param callback $callback
205-
* @return Hobo_View_Helper_BundleLink
205+
* @return BundlePhu_View_Helper_BundleLink
206206
**/
207207
public function setMinifyCallback($callback)
208208
{
@@ -228,7 +228,7 @@ public function setMinifyCallback($callback)
228228
* gzip_static on;
229229
*
230230
* @param bool $bool
231-
* @return Hobo_View_Helper_BundleLink
231+
* @return BundlePhu_View_Helper_BundleLink
232232
*/
233233
public function setUseGzip($bool)
234234
{
@@ -242,7 +242,7 @@ public function setUseGzip($bool)
242242
* Minification always occurs before compression.
243243
*
244244
* @param bool $bool
245-
* @return Hobo_View_Helper_BundleLink
245+
* @return BundlePhu_View_Helper_BundleLink
246246
*/
247247
public function setUseMinify($bool)
248248
{
@@ -254,7 +254,7 @@ public function setUseMinify($bool)
254254
* Sets the level of compression to pass to gzencode()
255255
*
256256
* @param int $level
257-
* @return Hobo_View_Helper_BundleLink
257+
* @return BundlePhu_View_Helper_BundleLink
258258
**/
259259
public function setGzipLevel($level)
260260
{
@@ -266,7 +266,7 @@ public function setGzipLevel($level)
266266
* Sets the encoding mode to be passed to gzencode()
267267
*
268268
* @param int $encodingMode FORCE_GZIP|FORCE_DEFLATE
269-
* @return Hobo_View_Helper_BundleLink
269+
* @return BundlePhu_View_Helper_BundleLink
270270
**/
271271
public function setGzipEncoding($encodingMode)
272272
{

BundlePhu/View/Helper/BundleScript.php

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?php
22
/**
3-
* Hobo ZF
3+
* BundlePhu
44
*
55
* LICENSE
66
*
77
* This source file is subject to the new BSD license that is bundled
88
* with this package in the file LICENSE. This license can also be viewed
99
* at http://hobodave.com/license.txt
1010
*
11-
* @category Hobo
12-
* @package Hobo_View
11+
* @category BundlePhu
12+
* @package BundlePhu_View
1313
* @subpackage Helper
1414
* @author David Abdemoulaie <[email protected]>
1515
* @copyright Copyright (c) 2010 David Abdemoulaie (http://hobodave.com/)
@@ -19,14 +19,14 @@
1919
/**
2020
* Helper for bundling of all included javascripts into a single file
2121
*
22-
* @category Hobo
23-
* @package Hobo_View
22+
* @category BundlePhu
23+
* @package BundlePhu_View
2424
* @subpackage Helper
2525
* @author David Abdemoulaie <[email protected]>
2626
* @copyright Copyright (c) 2010 David Abdemoulaie (http://hobodave.com/)
2727
* @license http://hobodave.com/license.txt New BSD License
2828
**/
29-
class Hobo_View_Helper_BundleScript extends Zend_View_Helper_HeadScript
29+
class BundlePhu_View_Helper_BundleScript extends Zend_View_Helper_HeadScript
3030
{
3131
/**
3232
* local Zend_View reference
@@ -39,7 +39,7 @@ class Hobo_View_Helper_BundleScript extends Zend_View_Helper_HeadScript
3939
* Registry key for placeholder
4040
* @var string
4141
*/
42-
protected $_regKey = 'Hobo_View_Helper_BundleScript';
42+
protected $_regKey = 'BundlePhu_View_Helper_BundleScript';
4343

4444
/**
4545
* Local reference to $view->baseUrl()
@@ -128,7 +128,7 @@ public function setView(Zend_View_Interface $view)
128128
/**
129129
* Proxies to Zend_View_Helper_HeadScript::headScript()
130130
*
131-
* @return Hobo_View_Helper_BundleScript
131+
* @return BundlePhu_View_Helper_BundleScript
132132
*/
133133
public function bundleScript()
134134
{
@@ -141,7 +141,7 @@ public function bundleScript()
141141
* This is where the bundled files are written.
142142
*
143143
* @param string $dir
144-
* @return Hobo_View_Helper_BundleScript
144+
* @return BundlePhu_View_Helper_BundleScript
145145
*/
146146
public function setCacheDir($dir)
147147
{
@@ -157,7 +157,7 @@ public function setCacheDir($dir)
157157
* if $docRoot == '/var/www/foo' then '/js/foo.js' will be found in '/var/www/foo/js/foo.js'
158158
*
159159
* @param string $docRoot
160-
* @return Hobo_View_Helper_BundleScript
160+
* @return BundlePhu_View_Helper_BundleScript
161161
*/
162162
public function setDocRoot($docRoot)
163163
{
@@ -172,7 +172,7 @@ public function setDocRoot($docRoot)
172172
* will be the src for the script tag.
173173
*
174174
* @param string $prefix
175-
* @return Hobo_View_Helper_BundleScript
175+
* @return BundlePhu_View_Helper_BundleScript
176176
*/
177177
public function setUrlPrefix($prefix)
178178
{
@@ -188,7 +188,7 @@ public function setUrlPrefix($prefix)
188188
* replaced with the generated filename.
189189
*
190190
* @param string $command Must contain :filename token
191-
* @return Hobo_View_Helper_BundleScript
191+
* @return BundlePhu_View_Helper_BundleScript
192192
*/
193193
public function setMinifyCommand($command)
194194
{
@@ -204,7 +204,7 @@ public function setMinifyCommand($command)
204204
* A callback, if defined, will take precedence over a minifyCommand.
205205
*
206206
* @param callback $callback
207-
* @return Hobo_View_Helper_BundleScript
207+
* @return BundlePhu_View_Helper_BundleScript
208208
**/
209209
public function setMinifyCallback($callback)
210210
{
@@ -230,7 +230,7 @@ public function setMinifyCallback($callback)
230230
* gzip_static on;
231231
*
232232
* @param bool $bool
233-
* @return Hobo_View_Helper_BundleScript
233+
* @return BundlePhu_View_Helper_BundleScript
234234
*/
235235
public function setUseGzip($bool)
236236
{
@@ -244,7 +244,7 @@ public function setUseGzip($bool)
244244
* Minification always occurs before compression.
245245
*
246246
* @param bool $bool
247-
* @return Hobo_View_Helper_BundleScript
247+
* @return BundlePhu_View_Helper_BundleScript
248248
*/
249249
public function setUseMinify($bool)
250250
{
@@ -256,7 +256,7 @@ public function setUseMinify($bool)
256256
* Sets the level of compression to pass to gzencode()
257257
*
258258
* @param int $level
259-
* @return Hobo_View_Helper_BundleScript
259+
* @return BundlePhu_View_Helper_BundleScript
260260
**/
261261
public function setGzipLevel($level)
262262
{
@@ -268,7 +268,7 @@ public function setGzipLevel($level)
268268
* Sets the encoding mode to be passed to gzencode()
269269
*
270270
* @param int $encodingMode FORCE_GZIP|FORCE_DEFLATE
271-
* @return Hobo_View_Helper_BundleScript
271+
* @return BundlePhu_View_Helper_BundleScript
272272
**/
273273
public function setGzipEncoding($encodingMode)
274274
{

0 commit comments

Comments
 (0)