Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Convert abstract classes that are only offering static methods #2367

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library/Zend/Barcode/Barcode.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @category Zend
* @package Zend_Barcode
*/
class Barcode
abstract class Barcode
{
const OBJECT = 'OBJECT';
const RENDERER = 'RENDERER';
Expand Down
2 changes: 1 addition & 1 deletion library/Zend/Cache/PatternFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @category Zend
* @package Zend_Cache
*/
class PatternFactory
abstract class PatternFactory
{
/**
* The pattern manager
Expand Down
2 changes: 1 addition & 1 deletion library/Zend/Cache/StorageFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* @package Zend_Cache
* @subpackage Storage
*/
class StorageFactory
abstract class StorageFactory
{
/**
* Plugin manager for loading adapters
Expand Down
2 changes: 1 addition & 1 deletion library/Zend/Math/BigInteger/BigInteger.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @package Zend_Math
* @subpackage BigInteger
*/
class BigInteger
abstract class BigInteger
{
/**
* Plugin manager for loading adapters
Expand Down
2 changes: 1 addition & 1 deletion library/Zend/Serializer/Serializer.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* @category Zend
* @package Zend_Serializer
*/
class Serializer
abstract class Serializer
{
/**
* Plugin manager for loading adapters
Expand Down