]> git.mxchange.org Git - hub.git/commitdiff
Rewrite:
authorRoland Häder <roland@mxchange.org>
Sun, 20 Dec 2020 11:12:15 +0000 (12:12 +0100)
committerRoland Häder <roland@mxchange.org>
Sun, 20 Dec 2020 11:45:35 +0000 (12:45 +0100)
- constructors of concrete (=implementing non-abstract) classes should be
  private to avoid somone making an inheriting class of a concrete class
- this is good practice: only make inheriting (concrete) classes of abstract
  classes, not another concrete class only because you want that functionality
  in your class, too
- the private constructor also stops you from doing such wrong things, no need
  to make all concrete classes final
- updated core framework
- removed deprecated exceptions, as the SPL's can do it, too

Signed-off-by: Roland Häder <roland@mxchange.org>
372 files changed:
application/hub/class_ApplicationHelper.php
application/hub/classes/apt-proxy/class_
application/hub/classes/apt-proxy/console/class_NodeConsoleAptProxy.php
application/hub/classes/blocks/class_
application/hub/classes/blocks/miner/class_HashBlock.php
application/hub/classes/chains/class_PackageFilterChain.php
application/hub/classes/chat/class_
application/hub/classes/chat/console/class_NodeConsoleChat.php
application/hub/classes/class_
application/hub/classes/client/http/class_HttpClient.php
application/hub/classes/commands/console/class_HubConsoleAptProxyCommand.php
application/hub/classes/commands/console/class_HubConsoleChatCommand.php
application/hub/classes/commands/console/class_HubConsoleCrawlerCommand.php
application/hub/classes/commands/console/class_HubConsoleCruncherCommand.php
application/hub/classes/commands/console/class_HubConsoleMainCommand.php
application/hub/classes/commands/console/class_HubConsoleMinerCommand.php
application/hub/classes/commands/html/class_HubHtmlIndexCommand.php
application/hub/classes/communicator/class_
application/hub/classes/communicator/crawler/class_CrawlerNodeCommunicator.php
application/hub/classes/communicator/miner/class_MinerNodeCommunicator.php
application/hub/classes/compressor/decorator/class_NetworkPackageCompressorDecorator.php
application/hub/classes/container/socket/class_SocketContainer.php
application/hub/classes/controller/console/class_HubConsoleAptProxyController.php
application/hub/classes/controller/console/class_HubConsoleChatController.php
application/hub/classes/controller/console/class_HubConsoleCrawlerController.php
application/hub/classes/controller/console/class_HubConsoleCruncherController.php
application/hub/classes/controller/console/class_HubConsoleDefaultNewsController.php
application/hub/classes/controller/console/class_HubConsoleFuseController.php
application/hub/classes/controller/console/class_HubConsoleMinerController.php
application/hub/classes/crawler/class_
application/hub/classes/crawler/console/class_NodeConsoleCrawler.php
application/hub/classes/cruncher/class_
application/hub/classes/cruncher/openssl/class_HubOpenSslCruncher.php
application/hub/classes/database/frontend/cruncher/class_CruncherUnitDatabaseFrontend.php
application/hub/classes/database/frontend/node_dht/class_NodeDistributedHashTableDatabaseFrontend.php
application/hub/classes/database/frontend/node_information/class_NodeInformationDatabaseFrontend.php
application/hub/classes/database/frontend/states/class_PeerStateLookupDatabaseFrontend.php
application/hub/classes/decoder/class_
application/hub/classes/decoder/package/class_PackageDecoder.php
application/hub/classes/dht/class_
application/hub/classes/dht/node/class_NodeDhtFacade.php
application/hub/classes/discovery/class_
application/hub/classes/discovery/node/class_UniversalNodeLocatorDiscovery.php
application/hub/classes/discovery/protocol/class_ProtocolDiscovery.php
application/hub/classes/discovery/recipient/class_
application/hub/classes/discovery/recipient/dht/class_DhtRecipientDiscovery.php
application/hub/classes/discovery/recipient/package/class_PackageRecipientDiscovery.php
application/hub/classes/discovery/recipient/socket/class_PackageSocketDiscovery.php
application/hub/classes/factories/chain/class_PackageFilterChainFactory.php
application/hub/classes/factories/chunks/class_ChunkHandlerFactory.php
application/hub/classes/factories/class_
application/hub/classes/factories/client/class_ClientFactory.php
application/hub/classes/factories/communicator/class_CommunicatorFactory.php
application/hub/classes/factories/decoder/class_DecoderFactory.php
application/hub/classes/factories/dht/class_DhtObjectFactory.php
application/hub/classes/factories/discovery/class_PackageDiscoveryFactory.php
application/hub/classes/factories/discovery/class_SocketDiscoveryFactory.php
application/hub/classes/factories/handler/class_MessageTypeHandlerFactory.php
application/hub/classes/factories/handler/class_NetworkPackageHandlerFactory.php
application/hub/classes/factories/handler/class_ProtocolHandlerFactory.php
application/hub/classes/factories/info/class_ConnectionInfoFactory.php
application/hub/classes/factories/lists/class_RecipientListFactory.php
application/hub/classes/factories/locator/class_UniversalNodeLocatorFactory.php
application/hub/classes/factories/node/class_NodeObjectFactory.php
application/hub/classes/factories/package/assembler/class_PackageAssemblerFactory.php
application/hub/classes/factories/package/class_NetworkPackageFactory.php
application/hub/classes/factories/package/fragmenter/class_FragmenterFactory.php
application/hub/classes/factories/producer/class_ProducerFactory.php
application/hub/classes/factories/registry/class_ObjectTypeRegistryFactory.php
application/hub/classes/factories/resolver/class_ProtocolResolverFactory.php
application/hub/classes/factories/socket/class_SocketFactory.php
application/hub/classes/factories/source/units/class_UnitSourceFactory.php
application/hub/classes/factories/source/url/class_UrlSourceObjectFactory.php
application/hub/classes/factories/states/communicator/class_CommunicatorStateFactory.php
application/hub/classes/factories/states/crawler/class_CrawlerStateFactory.php
application/hub/classes/factories/states/cruncher/class_CruncherStateFactory.php
application/hub/classes/factories/states/dht/class_DhtStateFactory.php
application/hub/classes/factories/states/miner/class_MinerStateFactory.php
application/hub/classes/factories/states/node/class_NodeStateFactory.php
application/hub/classes/factories/states/peer/class_PeerStateFactory.php
application/hub/classes/factories/tags/class_PackageTagsFactory.php
application/hub/classes/feature/hubcoin_reward/class_HubcoinRewardFeature.php
application/hub/classes/filter/activation/node/class_NodeActivation
application/hub/classes/filter/activation/node/class_NodeActivationAnnouncementFilter.php
application/hub/classes/filter/apt-proxy/class_AptProxyInitializationFilter.php
application/hub/classes/filter/apt-proxy/class_AptProxyPhpRequirementsFilter.php
application/hub/classes/filter/apt-proxy/class_AptProxyWelcomeTeaserFilter.php
application/hub/classes/filter/bootstrap/apt-proxy/class_AptProxyBootstrap
application/hub/classes/filter/bootstrap/apt-proxy/class_AptProxyBootstrapExtraBootstrappingFilter.php
application/hub/classes/filter/bootstrap/apt-proxy/class_AptProxyBootstrapGenericActivationFilter.php
application/hub/classes/filter/bootstrap/chat/class_ChatBootstrap
application/hub/classes/filter/bootstrap/chat/class_ChatBootstrapExtraBootstrappingFilter.php
application/hub/classes/filter/bootstrap/chat/class_ChatBootstrapGenericActivationFilter.php
application/hub/classes/filter/bootstrap/crawler/class_CrawlerBootstrap
application/hub/classes/filter/bootstrap/crawler/class_CrawlerBootstrapExtraBootstrappingFilter.php
application/hub/classes/filter/bootstrap/crawler/class_CrawlerBootstrapGenericActivationFilter.php
application/hub/classes/filter/bootstrap/cruncher/class_CruncherBootstrap
application/hub/classes/filter/bootstrap/cruncher/class_CruncherBootstrapBufferQueueInitializerFilter.php
application/hub/classes/filter/bootstrap/cruncher/class_CruncherBootstrapExtraBootstrappingFilter.php
application/hub/classes/filter/bootstrap/cruncher/class_CruncherBootstrapGenericActivationFilter.php
application/hub/classes/filter/bootstrap/miner/class_MinerBootstrap
application/hub/classes/filter/bootstrap/miner/class_MinerBootstrapBufferQueueInitializerFilter.php
application/hub/classes/filter/bootstrap/miner/class_MinerBootstrapExtraBootstrappingFilter.php
application/hub/classes/filter/bootstrap/miner/class_MinerBootstrapGenericActivationFilter.php
application/hub/classes/filter/bootstrap/node/class_NodeBootstrap
application/hub/classes/filter/bootstrap/node/class_NodeBootstrapExtraBootstrappingFilter.php
application/hub/classes/filter/bootstrap/node/class_NodeBootstrapGenerateNodeIdFilter.php
application/hub/classes/filter/bootstrap/node/class_NodeBootstrapGeneratePrivateKeyFilter.php
application/hub/classes/filter/bootstrap/node/class_NodeBootstrapGenerateSessionIdFilter.php
application/hub/classes/filter/bootstrap/node/class_NodeBootstrapListenerPoolFilter.php
application/hub/classes/filter/chat/class_Chat
application/hub/classes/filter/chat/class_ChatInitializationFilter.php
application/hub/classes/filter/chat/class_ChatPhpRequirementsFilter.php
application/hub/classes/filter/chat/class_ChatWelcomeTeaserFilter.php
application/hub/classes/filter/class_
application/hub/classes/filter/crawler/class_CrawlerInitializationFilter.php
application/hub/classes/filter/crawler/class_CrawlerPhpRequirementsFilter.php
application/hub/classes/filter/crawler/class_CrawlerWelcomeTeaserFilter.php
application/hub/classes/filter/cruncher/class_Cruncher
application/hub/classes/filter/cruncher/class_CruncherInitializationFilter.php
application/hub/classes/filter/cruncher/class_CruncherPhpRequirementsFilter.php
application/hub/classes/filter/cruncher/class_CruncherWelcomeTeaserFilter.php
application/hub/classes/filter/miner/class_Miner
application/hub/classes/filter/miner/class_MinerInitializationFilter.php
application/hub/classes/filter/miner/class_MinerPhpRequirementsFilter.php
application/hub/classes/filter/miner/class_MinerWelcomeTeaserFilter.php
application/hub/classes/filter/node/class_Node
application/hub/classes/filter/node/class_NodeInitializationFilter.php
application/hub/classes/filter/node/class_NodePhpRequirementsFilter.php
application/hub/classes/filter/node/class_NodeWelcomeTeaserFilter.php
application/hub/classes/filter/shutdown/apt-proxy/class_AptProxyShutdownFilter.php
application/hub/classes/filter/shutdown/chat/class_ChatShutdownFilter.php
application/hub/classes/filter/shutdown/crawler/class_CrawlerShutdownFilter.php
application/hub/classes/filter/shutdown/cruncher/class_CruncherShutdownFilter.php
application/hub/classes/filter/shutdown/miner/class_MinerShutdownFilter.php
application/hub/classes/filter/shutdown/node/class_NodeShutdown
application/hub/classes/filter/shutdown/node/class_NodeShutdownFlushNodeListFilter.php
application/hub/classes/filter/shutdown/node/class_NodeShutdownNodeFilter.php
application/hub/classes/filter/shutdown/node/class_NodeShutdownTaskHandlerFilter.php
application/hub/classes/filter/tags/answer/class_PackageAnnouncementAnswerTagFilter.php
application/hub/classes/filter/tags/answer/class_PackageDhtBootstrapAnswerTagFilter.php
application/hub/classes/filter/tags/answer/class_PackageRequestNodeListAnswerTagFilter.php
application/hub/classes/filter/tags/class_PackageAnnouncementTagFilter.php
application/hub/classes/filter/tags/class_PackageDhtBootstrapTagFilter.php
application/hub/classes/filter/tags/class_PackageRequestNodeListTagFilter.php
application/hub/classes/filter/tags/class_PackageSelfConnectTagFilter.php
application/hub/classes/filter/task/apt-proxy/class_AptProxyTaskHandlerInitializerFilter.php
application/hub/classes/filter/task/chat/class_ChatTaskHandlerInitializerFilter.php
application/hub/classes/filter/task/crawler/class_CrawlerTaskHandlerInitializerFilter.php
application/hub/classes/filter/task/cruncher/class_CruncherTaskHandlerInitializerFilter.php
application/hub/classes/filter/task/miner/class_MinerTaskHandlerInitializerFilter.php
application/hub/classes/filter/task/node/class_NodeTaskHandlerInitializerFilter.php
application/hub/classes/handler/chunks/class_ChunkHandler.php
application/hub/classes/handler/data/answer-status/announcement/class_NodeAnnouncementAnswerOkayHandler.php
application/hub/classes/handler/data/answer-status/class_
application/hub/classes/handler/data/answer-status/requests/class_RequestNodeListAnswerOkayHandler.php
application/hub/classes/handler/data/class_
application/hub/classes/handler/data/message-types/announcement/class_NodeMessageAnnouncementHandler.php
application/hub/classes/handler/data/message-types/answer/class_NodeMessageAnnouncementAnswerHandler.php
application/hub/classes/handler/data/message-types/answer/class_NodeMessageDhtBootstrapAnswerHandler.php
application/hub/classes/handler/data/message-types/answer/class_NodeMessageRequestNodeListAnswerHandler.php
application/hub/classes/handler/data/message-types/class_
application/hub/classes/handler/data/message-types/dht/class_NodeMessageDhtBootstrapHandler.php
application/hub/classes/handler/data/message-types/requests/class_NodeMessageRequestNodeListHandler.php
application/hub/classes/handler/data/message-types/self-connect/class_NodeMessageSelfConnectHandler.php
application/hub/classes/handler/package/class_NetworkPackageHandler.php
application/hub/classes/handler/protocol/class_
application/hub/classes/handler/protocol/ipv4/class_
application/hub/classes/handler/protocol/ipv4/tcp/class_TcpProtocolHandler.php
application/hub/classes/handler/raw_data/class_
application/hub/classes/handler/raw_data/socket/class_SocketRawDataHandler.php
application/hub/classes/handler/raw_data/tcp/class_
application/hub/classes/handler/raw_data/tcp/class_TcpRawDataHandler.php
application/hub/classes/handler/raw_data/udp/class_UdpRawDataHandler.php
application/hub/classes/helper/class_
application/hub/classes/helper/connection/class_
application/hub/classes/helper/connection/ipv4/tcp/class_TcpConnectionHelper.php
application/hub/classes/helper/connection/ipv4/udp/class_UdpConnectionHelper.php
application/hub/classes/helper/dht/class_DhtBootstrapHelper.php
application/hub/classes/helper/dht/class_DhtPublishEntryHelper.php
application/hub/classes/helper/messages/class_
application/hub/classes/helper/messages/crypto/class_CryptoRandomUnitMessageHelper.php
application/hub/classes/helper/node/announcement/class_NodeAnnouncementHelper.php
application/hub/classes/helper/node/answer/announcement/class_NodeAnnouncementMessageAnswerHelper.php
application/hub/classes/helper/node/answer/dht/class_NodeDhtBootstrapMessageAnswerHelper.php
application/hub/classes/helper/node/answer/requests/class_NodeRequestNodeListMessageAnswerHelper.php
application/hub/classes/helper/node/class_
application/hub/classes/helper/node/connection/class_NodeSelfConnectHelper.php
application/hub/classes/helper/node/requests/class_NodeRequestNodeListHelper.php
application/hub/classes/helper/work_units/class_
application/hub/classes/helper/work_units/cruncher/class_CruncherTestUnitHelper.php
application/hub/classes/info/class_
application/hub/classes/info/connection/class_ConnectionInfo.php
application/hub/classes/iterator/network/class_NetworkListenIterator.php
application/hub/classes/iterator/node/class_NodePingIterator.php
application/hub/classes/iterator/pool/handler/class_Handler
application/hub/classes/iterator/pool/handler/class_HandlerPoolIterator.php
application/hub/classes/iterator/pool/monitor/class_MonitorPoolIterator.php
application/hub/classes/iterator/pool/shutdown/class_Shutdown
application/hub/classes/iterator/pool/shutdown/class_ShutdownPoolIterator.php
application/hub/classes/iterator/pool/tasks/class_TaskPoolIterator.php
application/hub/classes/iterator/producer/keys/class_TestUnitKeyProducerIterator.php
application/hub/classes/listener/class_
application/hub/classes/listener/socket/class_SocketFileListener.php
application/hub/classes/listener/socket/decorator/class_SocketFileListenerDecorator.php
application/hub/classes/listener/tcp/class_
application/hub/classes/listener/tcp/class_TcpListener.php
application/hub/classes/listener/tcp/decorators/class_ClientTcpListenerDecorator.php
application/hub/classes/listener/tcp/decorators/class_HubTcpListenerDecorator.php
application/hub/classes/listener/udp/class_
application/hub/classes/listener/udp/class_UdpListener.php
application/hub/classes/listener/udp/decorators/class_ClientUdpListenerDecorator.php
application/hub/classes/listener/udp/decorators/class_HubUdpListenerDecorator.php
application/hub/classes/lists/hub/class_HubList.php
application/hub/classes/lists/pool/class_PoolEntriesList.php
application/hub/classes/lists/recipient/class_RecipientList.php
application/hub/classes/locator/class_UniversalNodeLocator.php
application/hub/classes/menu/class_Hub
application/hub/classes/menu/class_HubIndexMenu.php
application/hub/classes/miner/chash/class_HubCoinMiner.php
application/hub/classes/miner/class_
application/hub/classes/nodes/boot/class_HubBootNode.php
application/hub/classes/nodes/class_
application/hub/classes/nodes/list/class_HubListNode.php
application/hub/classes/nodes/master/class_HubMasterNode.php
application/hub/classes/nodes/regular/class_HubRegularNode.php
application/hub/classes/package/assembler/class_PackageAssembler.php
application/hub/classes/package/deliverable/class_PackageData.php
application/hub/classes/package/fragmenter/class_PackageFragmenter.php
application/hub/classes/pools/class_
application/hub/classes/pools/listener/class_DefaultListenerPool.php
application/hub/classes/pools/peer/class_DefaultPeerPool.php
application/hub/classes/producer/class_
application/hub/classes/producer/cruncher/keys/cruncher/class_CruncherKeyProducer.php
application/hub/classes/producer/cruncher/work_units/cruncher/class_CruncherTestUnitProducer.php
application/hub/classes/producer/miner/blocks/miner/class_MinerRealGenesisBlockProducer.php
application/hub/classes/producer/miner/blocks/miner/class_MinerTestGenesisBlockProducer.php
application/hub/classes/recipient/class_
application/hub/classes/recipient/dht/class_DhtRecipient.php
application/hub/classes/recipient/direct/class_DirectRecipient.php
application/hub/classes/recipient/self/class_SelfRecipient.php
application/hub/classes/recipient/upper/class_UpperRecipient.php
application/hub/classes/registry/objects/class_ObjectTypeRegistry.php
application/hub/classes/registry/socket/class_SocketRegistry.php
application/hub/classes/resolver/command/console/class_HubConsoleCommandResolver.php
application/hub/classes/resolver/command/html/class_HubHtmlCommandResolver.php
application/hub/classes/resolver/controller/console/class_HubConsoleControllerResolver.php
application/hub/classes/resolver/controller/html/class_HubHtmlControllerResolver.php
application/hub/classes/resolver/protocol/class_
application/hub/classes/resolver/protocol/tcp/class_TcpProtocolResolver.php
application/hub/classes/resolver/state/peer/class_PeerStateResolver.php
application/hub/classes/source/class_
application/hub/classes/source/units/class_TestUnitSource.php
application/hub/classes/source/urls/class_Crawler
application/hub/classes/source/urls/class_CrawlerFoundRssUrlSource.php
application/hub/classes/source/urls/class_CrawlerLocalStartUrlSource.php
application/hub/classes/source/urls/class_CrawlerRssStartUrlSource.php
application/hub/classes/source/urls/class_CrawlerUploadedListUrlSource.php
application/hub/classes/states/communicator/active/class_CommunicatorActiveState.php
application/hub/classes/states/communicator/class_Communicator
application/hub/classes/states/communicator/init/class_CommunicatorInitState.php
application/hub/classes/states/crawler/active/class_CrawlerActiveState.php
application/hub/classes/states/crawler/booting/class_CrawlerBootingState.php
application/hub/classes/states/crawler/class_Crawler
application/hub/classes/states/crawler/init/class_CrawlerInitState.php
application/hub/classes/states/cruncher/class_Cruncher
application/hub/classes/states/cruncher/init/class_CruncherInitState.php
application/hub/classes/states/cruncher/virgin/class_CruncherVirginState.php
application/hub/classes/states/dht/active/class_DhtActiveState.php
application/hub/classes/states/dht/booting/class_DhtBootingState.php
application/hub/classes/states/dht/class_Dht
application/hub/classes/states/dht/init/class_DhtInitState.php
application/hub/classes/states/dht/virgin/class_DhtVirginState.php
application/hub/classes/states/miner/booting/class_MinerBootingState.php
application/hub/classes/states/miner/class_Miner
application/hub/classes/states/miner/init/class_MinerInitState.php
application/hub/classes/states/miner/virgin/class_MinerVirginState.php
application/hub/classes/states/node/active/class_NodeActiveState.php
application/hub/classes/states/node/announced/class_NodeAnnouncementCompletedState.php
application/hub/classes/states/node/announced/class_NodeAnnouncingState.php
application/hub/classes/states/node/class_Node
application/hub/classes/states/node/init/class_NodeInitState.php
application/hub/classes/states/node/seniors/class_NodeReachableState.php
application/hub/classes/states/node/virgin/class_NodeVirginState.php
application/hub/classes/states/peer/class_
application/hub/classes/states/peer/connected/class_ConnectedPeerState.php
application/hub/classes/states/peer/errors/class_ConnectionRefusedPeerState.php
application/hub/classes/states/peer/errors/class_ConnectionTimedOutPeerState.php
application/hub/classes/states/peer/errors/class_NoRouteToHostPeerState.php
application/hub/classes/states/peer/errors/class_OperationAlreadyProgressPeerState.php
application/hub/classes/states/peer/errors/class_ProblemPeerState.php
application/hub/classes/states/peer/errors/class_TransportEndpointGonePeerState.php
application/hub/classes/states/peer/init/class_InitPeerState.php
application/hub/classes/statistics/connection/class_ConnectionStatisticsHelper.php
application/hub/classes/streams/raw_data/input/class_RawDataInputStream.php
application/hub/classes/streams/raw_data/output/class_RawDataOutputStream.php
application/hub/classes/tags/class_
application/hub/classes/tags/package/class_PackageTags.php
application/hub/classes/tasks/apt-proxy/class_
application/hub/classes/tasks/apt-proxy/class_AptProxyListenerTask.php
application/hub/classes/tasks/chat/class_
application/hub/classes/tasks/chat/class_ChatTelnetListenerTask.php
application/hub/classes/tasks/crawler/class_Crawler
application/hub/classes/tasks/crawler/communicator/class_CrawlerNodeCommunicatorTask.php
application/hub/classes/tasks/crawler/document_parser/class_CrawlerDocumentParserTask.php
application/hub/classes/tasks/crawler/mime_sniffer/class_CrawlerMimeSnifferTask.php
application/hub/classes/tasks/crawler/ping/class_CrawlerPingTask.php
application/hub/classes/tasks/crawler/publisher/class_CrawlerRemoteJobPublisherTask.php
application/hub/classes/tasks/crawler/snippet_extractor/class_CrawlerSnippetExtractorTask.php
application/hub/classes/tasks/crawler/structure_analyzer/class_CrawlerStructureAnalyzerTask.php
application/hub/classes/tasks/crawler/url_crawler/local/class_CrawlerLocalUrlCrawlerTask.php
application/hub/classes/tasks/crawler/url_crawler/remote/class_CrawlerRemoteUrlCrawlerTask.php
application/hub/classes/tasks/crawler/url_source/class_CrawlerUrlSource
application/hub/classes/tasks/crawler/url_source/class_CrawlerUrlSourceFoundRssTask.php
application/hub/classes/tasks/crawler/url_source/class_CrawlerUrlSourceLocalStartTask.php
application/hub/classes/tasks/crawler/url_source/class_CrawlerUrlSourceRssStartTask.php
application/hub/classes/tasks/crawler/url_source/class_CrawlerUrlSourceUploadedListTask.php
application/hub/classes/tasks/cruncher/class_Cruncher
application/hub/classes/tasks/cruncher/class_CruncherKeyProducerTask.php
application/hub/classes/tasks/cruncher/class_CruncherTestUnitProducerTask.php
application/hub/classes/tasks/cruncher/class_CruncherWorkUnitFetcherTask.php
application/hub/classes/tasks/miner/block_fetcher/class_MinerBlockFetcherTask.php
application/hub/classes/tasks/miner/block_producer/class_MinerRealGenesisBlockProducerTask.php
application/hub/classes/tasks/miner/block_producer/class_MinerTestGenesisBlockProducerTask.php
application/hub/classes/tasks/miner/class_Miner
application/hub/classes/tasks/miner/communicator/class_MinerNodeCommunicatorTask.php
application/hub/classes/tasks/network/class_NetworkPackage
application/hub/classes/tasks/network/class_NetworkPackageReaderTask.php
application/hub/classes/tasks/network/class_NetworkPackageWriterTask.php
application/hub/classes/tasks/node/announcement/class_NodeAnnouncementTask.php
application/hub/classes/tasks/node/chunks/class_NodeChunkAssemblerTask.php
application/hub/classes/tasks/node/class_Node
application/hub/classes/tasks/node/decoder/class_NodePackageDecoderTask.php
application/hub/classes/tasks/node/dht/class_NodeDht
application/hub/classes/tasks/node/dht/class_NodeDhtBootstrapTask.php
application/hub/classes/tasks/node/dht/class_NodeDhtInitializationTask.php
application/hub/classes/tasks/node/dht/class_NodeDhtLateBootstrapTask.php
application/hub/classes/tasks/node/dht/class_NodeDhtPublicationCheckTask.php
application/hub/classes/tasks/node/dht/class_NodeDhtPublicationTask.php
application/hub/classes/tasks/node/dht/class_NodeDhtQueryTask.php
application/hub/classes/tasks/node/listener/class_NodeSocketListenerTask.php
application/hub/classes/tasks/node/ping/class_NodePingTask.php
application/hub/classes/tasks/node/self_connect/class_NodeSelfConnectTask.php
application/hub/classes/tasks/node/tags/class_NodePackageTagsInitTask.php
application/hub/classes/tasks/node/update/class_NodeUpdateCheckTask.php
application/hub/classes/template/xml/announcement/class_XmlAnnouncementTemplateEngine.php
application/hub/classes/template/xml/answer/announcement/class_XmlAnnouncementAnswerTemplateEngine.php
application/hub/classes/template/xml/answer/class_
application/hub/classes/template/xml/answer/dht/class_XmlDhtBootstrapAnswerTemplateEngine.php
application/hub/classes/template/xml/answer/requests/class_XmlRequestNodeListAnswerTemplateEngine.php
application/hub/classes/template/xml/class_
application/hub/classes/template/xml/connect/class_XmlSelfConnectTemplateEngine.php
application/hub/classes/template/xml/dht/bootstrap/class_XmlDhtBootstrapTemplateEngine.php
application/hub/classes/template/xml/dht/publish/class_XmlDhtPublishEntryTemplateEngine.php
application/hub/classes/template/xml/entries/class_XmlRequestNodeListEntryTemplateEngine.php
application/hub/classes/template/xml/objects/class_XmlObjectRegistryTemplateEngine.php
application/hub/classes/template/xml/producer/test_units/class_XmlCruncherTestUnitTemplateEngine.php
application/hub/classes/template/xml/requests/class_XmlRequestNodeListTemplateEngine.php
application/hub/classes/tools/hub/class_HubTools.php
application/hub/classes/tools/node/class_NodeLocatorUtils.php
application/hub/classes/visitor/pool/class_
application/hub/classes/visitor/pool/handler/class_Handler
application/hub/classes/visitor/pool/monitor/class_RawDataPoolMonitorVisitor.php
application/hub/classes/visitor/pool/shutdown/class_Shutdown
application/hub/classes/visitor/pool/shutdown/class_ShutdownListenerPoolVisitor.php
application/hub/classes/visitor/socket/class_HalfShutdownSocketVisitor.php
application/hub/classes/visitor/socket/class_ShutdownSocketVisitor.php
application/hub/classes/visitor/tasks/class_ActiveTaskVisitor.php
application/hub/classes/visitor/tasks/class_ShutdownTaskVisitor.php
application/hub/exceptions/lists/class_ListGroupAlreadyAddedException.php [deleted file]
application/hub/exceptions/lists/class_NoListGroupException.php [deleted file]
core

index 4e7938a79bccd9571997c71f98bb95f90a2e7db5..ce1c87c15ba5342c00a77cd0c03ebf074b1c2b47 100644 (file)
@@ -59,7 +59,7 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 3cfd243a5a96face3395d37f68dac98d8c507fb8..3397612838f4c6694fbfc75d27b967b39184209a 100644 (file)
@@ -34,7 +34,7 @@ class Node???AptProxy extends BaseNodeAptProxy implements AptProxyter {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 2bf3cd56933ce045ec52228b9a95d472c21873b9..0b3172ab8d074d9de930fff358d55f4a0652e030 100644 (file)
@@ -36,7 +36,7 @@ class NodeConsoleAptProxy extends BaseNodeAptProxy implements AptProxy, Register
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 26d6a6c57ebbacdf0839b2c0ef54b673af42dff7..49644e4cd7fcd8872e3d5ff06608a6044cae1e21 100644 (file)
@@ -27,7 +27,7 @@ class ???Block extends BaseBlock implements === {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index b061d98553bebebf7f3abb0d2d1083134756a23e..9ac604ce0f1bb4365a8cb77a5f41f52a2be4b66e 100644 (file)
@@ -34,7 +34,7 @@ class HashBlock extends BaseBlock implements Minable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 4545f6f70931631f39d202a598e8ead6b083c113..81a0a2472e9c2a47d45cc0384e7a4a02dec544bb 100644 (file)
@@ -37,7 +37,7 @@ class PackageFilterChain extends FilterChain {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index f861b3d5860bee6c50c0a10621b7c0ca43a87f54..28a6675a1296f91abd93a651a394e7abf24eeff9 100644 (file)
@@ -34,7 +34,7 @@ class Node???Chat extends BaseNodeChat implements Chatter {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index fb29d8400a4675a770b84769b2e4ee73b19d36a7..9d26f380dcefdc66ddf8c4fadeae0eeb299cd2e1 100644 (file)
@@ -36,7 +36,7 @@ class NodeConsoleChat extends BaseNodeChat implements Chatter, Registerable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 8d857a1f74b90a0e139d7433090690c025df802a..619aab2280cb6d0896073c966552b36059c9e421 100644 (file)
@@ -33,7 +33,7 @@ class ??? extends BaseHubSystem implements === {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index cd943ad768fac783b87825a3f7d466d90591dba6..5755cd9a8bb6fa4978c25304d3afe32507c0f48e 100644 (file)
@@ -37,7 +37,7 @@ class HttpClient extends BaseClient implements Client {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Set default user agent string (to allow other classes to override this)
                $this->setUserAgent(self::HTTP_USER_AGENT);
 
index 211cb43cb2b30aa0b52aa1b18cb8c1ffbcc3f764..e0463dd4c8fafe7567d03820abc99cb466b53446 100644 (file)
@@ -41,7 +41,7 @@ class HubConsoleAptProxyCommand extends BaseCommand implements Commandable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 3c0affdd12cda1fe4d0ed615d9fbf30800cedde1..ab5d0d12a69262b74f6f30e92046ac021842a6c0 100644 (file)
@@ -41,7 +41,7 @@ class HubConsoleChatCommand extends BaseCommand implements Commandable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 9295407f947918c10767767d66a29fcf452822e5..6b02bc3b59e74c3ad720d92545147c4288860d72 100644 (file)
@@ -41,7 +41,7 @@ class HubConsoleCrawlerCommand extends BaseCommand implements Commandable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 34a52c3fedbca6128086095efa364366e11ccb76..b8022fee8806653eec139eb19091662d8eb507cf 100644 (file)
@@ -41,7 +41,7 @@ class HubConsoleCruncherCommand extends BaseCommand implements Commandable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index bca4ecfd2698edfe5a9458ad1ab9bafdbcaa28d1..6e00c3a04c2f3f59fafd5a2f590c5a981f8af4d8 100644 (file)
@@ -44,7 +44,7 @@ class HubConsoleMainCommand extends BaseCommand implements Commandable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 4d9761b28bc9dfc4a6e1ad81ca01cf34df09c23d..7b3bfe1a2ba78082a860fbc53a51688cac5eda4d 100644 (file)
@@ -41,7 +41,7 @@ class HubConsoleMinerCommand extends BaseCommand implements Commandable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index f710c1927ccd8f0e6cc7c4b9a9ea7a2e276fd190..09614ef9ecda57ac0849165feb73c7749f84aff9 100644 (file)
@@ -39,7 +39,7 @@ class HubHtmlIndexCommand extends BaseCommand implements Commandable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index fa62128eb8ddb58ddf411f3fddc6fdc154c3aec6..6b117daf6457b4f840aebb68d2a5bc4160f97886 100644 (file)
@@ -27,7 +27,7 @@ class ???NodeCommunicator extends BaseCommunicator implements Communicator {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index de54fd8bede186dc560f0c71807ccaddb0afda6e..2efda2764acbdb22faad194773434edf7caad95e 100644 (file)
@@ -37,7 +37,7 @@ class CrawlerNodeCommunicator extends BaseCommunicator implements Communicator,
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 7835e30390a1435d928f2c1f14b5a9107f0d73fa..bfd85b13c954443619cca34555492e8a5942ae15 100644 (file)
@@ -37,7 +37,7 @@ class MinerNodeCommunicator extends BaseCommunicator implements Communicator, Re
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 92a6941edabc63a2ed9dd6a1f4fb430ab7010d7a..a4cce85164a9105db191eccacb2f0047332757cb 100644 (file)
@@ -42,7 +42,7 @@ class NetworkPackageCompressorDecorator extends BaseHubSystem implements Compres
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index efabd8a0e746eed8ee38f5587940c05cc3115f84..1cc0d983856d75d4dffc3ceecd811eb888d2b7bf 100644 (file)
@@ -125,7 +125,7 @@ class SocketContainer extends BaseHubContainer implements StorableSocket, Visita
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 5bf1d577685d6991692fe01b743f0ad81f6141cb..8f2fe0f29429b75c337e2fb10a52873b0e351aa4 100644 (file)
@@ -38,7 +38,7 @@ class HubConsoleAptProxyController extends BaseController implements Controller
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 0db714aba8424c5c94121734cc33dc9f2c93ece0..5385ef8e11924cd63da9984636da09d8e4ebe943 100644 (file)
@@ -38,7 +38,7 @@ class HubConsoleChatController extends BaseController implements Controller {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index fcd071bae1e003bc137dc43cb7e72192e91a8469..0c366831d025d17ec8f24927c3331a234609a6e8 100644 (file)
@@ -38,7 +38,7 @@ class HubConsoleCrawlerController extends BaseController implements Controller {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 430f8d3a214a781400ef3fa188066eb2e3334b6e..4bbd977786dda913cf0feb2ba34df4cd9863e8cb 100644 (file)
@@ -39,7 +39,7 @@ class HubConsoleCruncherController extends BaseController implements Controller
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 8e21d9090344883575abe2ce33c62365c6ce53f3..4a134ec7a0f9f316fd09e8f0d1eee43b0dd30cb5 100644 (file)
@@ -39,7 +39,7 @@ class HubConsoleDefaultNewsController extends BaseController implements Controll
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index ba76fc072f7bbe498b36485c163cb34318df57f2..7b35f609fde09a9c7a04194c0685eda322b09ea1 100644 (file)
@@ -38,7 +38,7 @@ class HubConsoleFuseController extends BaseController implements Controller {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 467efd44bd2465e7b651cfd4d9a0b538b45304a3..0b5713ac01c15ec55d87d85d5e545f2221dfd137 100644 (file)
@@ -38,7 +38,7 @@ class HubConsoleMinerController extends BaseController implements Controller {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 11d4166039b03b91ae44eba6aa16cdfe2e691968..d3dc5ba984abf7d41a2c1855694d0d92788ef1e6 100644 (file)
@@ -33,7 +33,7 @@ class Node???Crawler extends BaseNodeCrawler implements Crawler {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 724c9245a233507c9f710f9fe1db66846a1c2a13..d834b36aee6af84eff416de80b18fa6de1a89dd4 100644 (file)
@@ -37,7 +37,7 @@ class NodeConsoleCrawler extends BaseNodeCrawler implements Crawler, Registerabl
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 7ba0979fdae599964cb918f78b87a38a819e7531..809cf70b284dceae3a0290dcf4e07f0c5204e73f 100644 (file)
@@ -33,7 +33,7 @@ class Hub???Cruncher extends BaseHubCruncher implements CruncherHelper, Register
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 2e08dca0f3908e4bf9ad8cb025024bf53f90a0a5..bef6c552c9a3bbd49e7d5b64eccc902a47049937 100644 (file)
@@ -41,7 +41,7 @@ class HubOpenSslCruncher extends BaseHubCruncher implements CruncherHelper, Regi
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 0f52971a95e1467b3c2b2fe1286d49dc8574c005..e99eb05b34e86369cb10ecac148b56972cb707c7 100644 (file)
@@ -46,7 +46,7 @@ class CruncherUnitDatabaseFrontend extends BaseHubDatabaseFrontend implements Un
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 02da97f9b407c94802df1e1b83c0b6dfa3893f33..4e6757a9af76ffed4623f233c298f22ccfad0c20 100644 (file)
@@ -78,7 +78,7 @@ class NodeDistributedHashTableDatabaseFrontend extends BaseHubDatabaseFrontend i
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 0f0ae5ade8b20f3c16964b4b0c9eb157ea5de4cc..4ca0d100a3aceb703fb4471518c2f944f539ea8a 100644 (file)
@@ -54,7 +54,7 @@ class NodeInformationDatabaseFrontend extends BaseHubDatabaseFrontend implements
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 70b61aa76e931058f64d5c38ac10e910c99929e0..a07b7c4b73aa4c414ec0ebdc697bf6df85f8b2da 100644 (file)
@@ -62,7 +62,7 @@ class PeerStateLookupDatabaseFrontend extends BaseHubDatabaseFrontend implements
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 8668c673012447d249e4458d4e27d54985e8d93b..7221ba57a915ea1aebbc78bd7bda14ba350f94fa 100644 (file)
@@ -34,7 +34,7 @@ class ???Decoder extends BaseDecoder implements Decodeable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 71e4c963a39c36519526a2857eff84ad824f5c8c..45e4cc049cffde0258ef8ce44fe2237f03cff18c 100644 (file)
@@ -51,7 +51,7 @@ class PackageDecoder extends BaseDecoder implements Decodeable, Registerable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 279235e8fd36684d5cbf4539f5ecf0afce22756c..c22d57adee1c7701997231fa53df0251c6bbaab6 100644 (file)
@@ -34,7 +34,7 @@ class ???DhtFacade extends BaseDht implements Distributable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index f12fa797b19fa667b8d76f2098c60fa80858949a..7536c6e8187ab8d7e38fc7a13a62fa12ed817ae6 100644 (file)
@@ -55,7 +55,7 @@ class NodeDhtFacade extends BaseDht implements DistributableNode, Registerable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 127cb7850a45ac70827c6b2e1b4b29f14386c118..33990c524522eded11fad572b996ed20cb1b1837 100644 (file)
@@ -30,7 +30,7 @@ class !!!Discovery extends BaseNodeDiscovery implements Discoverable,,,, Registe
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
@@ -47,7 +47,5 @@ class !!!Discovery extends BaseNodeDiscovery implements Discoverable,,,, Registe
                // Return the prepared instance
                return $discoveryInstance;
        }
-}
 
-// [EOF]
-?>
+}
index 0fffb065e313f507a43103faca4f6a7d86e36dfd..64901beff638da391748da130072c8264fc8e180 100644 (file)
@@ -39,7 +39,7 @@ class UniversalNodeLocatorDiscovery extends BaseNodeDiscovery implements Discove
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 9a8503070f0dbcb4232faab3a8821da65e8e6e56..a808f529fd7afb8095b8ad98c4ad5285e1741d72 100644 (file)
@@ -41,7 +41,7 @@ class ProtocolDiscovery extends BaseNodeDiscovery implements DiscoverableProtoco
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 30c5124e2f508ebfd382143e567076853950d73c..797b41efc3e249fdc2f7425162c4e31badb7a915 100644 (file)
@@ -33,7 +33,7 @@ class !!!RecipientDiscovery extends BaseRecipientDiscovery implements Discoverab
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index c542b6cb403019542cf2340046dd320eb8b82d72..421677e1c62f68d680ccd6357000d01bff638e7b 100644 (file)
@@ -38,7 +38,7 @@ class DhtRecipientDiscovery extends BaseRecipientDiscovery implements Discoverab
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 15ae67030c9d8775082f71093a5a5e7878a75bd0..f9b64bd54ccf2b96340944e5a3509452a447c9f8 100644 (file)
@@ -47,7 +47,7 @@ class PackageRecipientDiscovery extends BaseRecipientDiscovery implements Discov
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index d18a30c1c3762e6b0bf5b684d4e47b0f2910d75c..0a3d5c160db52cd22a66ecc8a9974f24036b8d99 100644 (file)
@@ -52,7 +52,7 @@ class PackageSocketDiscovery extends BaseRecipientDiscovery implements Discovera
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 1bd1511fb851ade5fc06b3495eeba3d1fb5d7c4c..1ebc79a23cc350b778c5a866b627ed7f76a36431 100644 (file)
@@ -35,7 +35,7 @@ class PackageFilterChainFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index c5cffc050f19d7309f73fbe771c39e415943590a..7f159780ba09d0d702e99542e7761aa8fba07e9c 100644 (file)
@@ -35,7 +35,7 @@ class ChunkHandlerFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index c36b6198f76f1d3b092646998af66914097e90e7..d2cd6525c6bb0704fbcc731f3a87ccaaa7c90ed2 100644 (file)
@@ -3,6 +3,7 @@
 namespace Org\Shipsimu\Hub\Factory\;
 
 // Import framework stuff
+use Org\Mxchange\CoreFramework\Factory\BaseFactory;
 use Org\Mxchange\CoreFramework\Factory\Object\ObjectFactory;
 use Org\Mxchange\CoreFramework\Registry\GenericRegistry;
 
@@ -28,13 +29,13 @@ use Org\Mxchange\CoreFramework\Registry\GenericRegistry;
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-class ???Factory extends ObjectFactory {
+class ???Factory extends BaseFactory {
        /**
         * Protected constructor
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
@@ -51,7 +52,7 @@ class ???Factory extends ObjectFactory {
                        $%%%Instance = GenericRegistry::getRegistry()->getInstance('|||');
                } else {
                        // Get the handler instance
-                       $%%%Instance = self::createObjectByConfiguredName('|||_class');
+                       $%%%Instance = ObjectFactory::createObjectByConfiguredName('|||_class');
 
                        // Add it to the registry
                        GenericRegistry::getRegistry()->addInstance('|||', $%%%Instance);
index d98fc0643100f4320ae1fcd9512de19ebf758160..de5b83babcc81d51f3e40554529375a7cf4b3883 100644 (file)
@@ -39,7 +39,7 @@ class ClientFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index c0276d45c594ca4bada5011a0a4a9f095648b8ae..867e6d37e1135ecd6c075d2b432d0684610cb469 100644 (file)
@@ -38,7 +38,7 @@ class CommunicatorFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 3c79d9e04b142218c38dcac9dfcfe3e83c4de950..4bdc6b2fe554af522d50da13d8159bad1f33a47e 100644 (file)
@@ -39,7 +39,7 @@ class DecoderFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 241eaa7c70cddc96ec78fa5e0e7d1ff74bdc56eb..871229e2f034b68fc4891329324aa239fd34a707 100644 (file)
@@ -38,7 +38,7 @@ class DhtObjectFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 4523b6f0ae504db797e27d48f80d220deb301d34..6fadbd03afea1b88ba91edb55bb8fade99430f58 100644 (file)
@@ -35,7 +35,7 @@ class PackageDiscoveryFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 71f37854960550c9453425df57ae616ca3260bbe..1bb1112ac2aaad6af38ce1ad4b736e09ff4b116a 100644 (file)
@@ -35,7 +35,7 @@ class SocketDiscoveryFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 3303fb2ac350cbf517b6ef9704bb841ec6dd602f..c5296422bb32218032f5557b5352eda647ef11cf 100644 (file)
@@ -38,7 +38,7 @@ class MessageTypeHandlerFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 8395ee5ac8b9ccc6a66bd701a7a650e33c70d83e..6366ed813688354e8782c42f1ce1d84a86ead47e 100644 (file)
@@ -35,7 +35,7 @@ class NetworkPackageHandlerFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 289aaac6b26b1aeace1f82c30408d3dc3e2acd8b..fd13c1a32318a6314958e1001f8d23d4c876be76 100644 (file)
@@ -41,7 +41,7 @@ class ProtocolHandlerFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 718d23b648ed3a1478bba17c125bb140a4ad0afb..972f2bac095f5873a1694a63d1432cc69d0476f9 100644 (file)
@@ -46,7 +46,7 @@ class ConnectionInfoFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 1cebb9d86c165bbc67510808b86df1d038c7744a..81a6acfba47309334dad75bca349b7a6e6303b33 100644 (file)
@@ -35,7 +35,7 @@ class RecipientListFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index de59b16fda8d021e396fcf0f0ad89bbe86362bee..d4b8fcbc75a4aecf21957a8606f14b44bed15647 100644 (file)
@@ -38,7 +38,7 @@ class UniversalNodeLocatorFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 8beb2a05baf359c83fe95dfe0a17464491160333..a87793f0c4801438212865e4d01791d2673edadb 100644 (file)
@@ -40,7 +40,7 @@ class NodeObjectFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index c68fec1e3c5525742645e90d939ceaa4344a610d..8ed6f34699c2fc569129d3a87805e7cb5d715e9a 100644 (file)
@@ -38,7 +38,7 @@ class PackageAssemblerFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index b83d7bf8f12c997a78fca5eb973664a91c133917..d6700b494ef9b87460e7119d9628b1be06f8166c 100644 (file)
@@ -35,7 +35,7 @@ class NetworkPackageFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index c149e39b936bec9731d48d8c85da7294d3b67398..d43f497ae861fc64099235da72a05b51a985dc70 100644 (file)
@@ -38,7 +38,7 @@ class FragmenterFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 40319c0afb343a4385d093b283948d081855ff12..0cf62241e6b87150f3e9ee2fac4e5a20784a6a01 100644 (file)
@@ -35,7 +35,7 @@ class ProducerFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index e8146441d2917ba706ec1c7f7e5486dde124abbf..7b2bcd151061090b69f0f2861da2896d8d2b53f1 100644 (file)
@@ -35,7 +35,7 @@ class ObjectTypeRegistryFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 1cfe1043aad3b27971c1a98099eff1b405a3ed02..a38ac68be196282e346d77187685bc40543eaf25 100644 (file)
@@ -36,7 +36,7 @@ class ProtocolResolverFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index b38026eeceb4d00c4ced449666ca779975323406..67d9ca7a33467c8ec7e534b52fd9cd2c1f6578de 100644 (file)
@@ -53,7 +53,7 @@ class SocketFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index d8cead4797e61e3e5672347c08f973672b67552e..445548b64351262df81793b5af8230bc1edf3670 100644 (file)
@@ -38,7 +38,7 @@ class UnitSourceFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 035c7b092cc531f91e34d167da673d28df981b2c..b1d2705f8b492acf3388ae9affa6801b3fd51744 100644 (file)
@@ -36,7 +36,7 @@ class UrlSourceObjectFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 7c4aad3cebf0b2e0c4902b822184a0f8d8a28639..eb877555bf8e8300742390a38288c40df2d0b921 100644 (file)
@@ -37,7 +37,7 @@ class CommunicatorStateFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 2695e75d3db8332ba21b59c246afdbee4c157a71..01fae9fe1749a34c5fd9c8dce9700c24d380743c 100644 (file)
@@ -38,7 +38,7 @@ class CrawlerStateFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 45bd084d7fcb82e59a61d1bdd19151c40700b79a..54b50fdec263e9ffd0e1499e5f13d98c9884328e 100644 (file)
@@ -38,7 +38,7 @@ class CruncherStateFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 24d508db4deba88e974c7d35d80825ef4b033634..2ecfae9d7a11d47a7a50fcd88090db6c8ae4f825 100644 (file)
@@ -41,7 +41,7 @@ class DhtStateFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index ac2fc2dde0b1fc90417b01e62fa51dea6fee8d48..6daf8042a367081af045ecf2e659d9050e52c14c 100644 (file)
@@ -38,7 +38,7 @@ class MinerStateFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 5da2faedcf01cee60e6f888de9a25cf4c0e332a3..91a73aec530ee3caef3d0c47af866f4387906647 100644 (file)
@@ -41,7 +41,7 @@ class NodeStateFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 88a14a455cae30df5fdd9c3c9134e5df4b29ecf5..9c04655938a24d6de5f5a2d9de9f1681bd6ed6ec 100644 (file)
@@ -48,7 +48,7 @@ class PeerStateFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index bec76339e09b426f28a6fef1d57215784247a89d..e9a07e78892f35fceb0ea258d6c328c357f942f4 100644 (file)
@@ -35,7 +35,7 @@ class PackageTagsFactory extends BaseFactory {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index d24c15ec175b6d4c99a6ea28b2d5837c83f43ad0..e45d954a99e0af6144771944ac4e7c4ea54d27cd 100644 (file)
@@ -39,7 +39,7 @@ class HubcoinRewardFeature extends BaseFeature implements Feature {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 78c7e42df69f6fdb6f74a537070559d178ede587..5e95127cb403530a69f570b73042db4f3e170930 100644 (file)
@@ -39,7 +39,7 @@ class HubActivation???Filter extends BaseNodeFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index f7c7f40d89f22a24b27286e88f08b06ec08229a3..19eed54b351cc2efeb1025e260ff081dfd2d6937 100644 (file)
@@ -40,7 +40,7 @@ class NodeActivationAnnouncementFilter extends BaseNodeFilter implements Filtera
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 3ac1e236eab01fb4baff116d2e9550dc3a1c1652..1ec20325d16697f75174fcebed62084b33bfbe30 100644 (file)
@@ -38,7 +38,7 @@ class AptProxyInitializationFilter extends BaseAptProxyFilter implements Filtera
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index b9a41486a1c329c5541131d77fc7fc5cf8a439eb..66ca5f0f98ea51c8a240f8fe248c587a8ec59fb8 100644 (file)
@@ -35,7 +35,7 @@ class AptProxyPhpRequirementsFilter extends BaseAptProxyFilter implements Filter
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index e1c4069f394f41ef6d065e1b686911b3e422a2e5..c9da78f64b909fe54c730416b5ec565c5aed1916 100644 (file)
@@ -36,7 +36,7 @@ class AptProxyWelcomeTeaserFilter extends BaseAptProxyFilter implements Filterab
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 7bf61872096ec8aae313bdd68617fd853acc46d3..7d1f6b7e3b3e46fb76e3111c9186a5d0ce0d717a 100644 (file)
@@ -36,7 +36,7 @@ class AptProxyBootstrap???Filter extends BaseAptProxyFilter implements Filterabl
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 7772c7cfee0d560ae0aae092cb3bc82aa2f24e55..9d39361c2b2ad7ceb0a125ae10913f7f1e989ec9 100644 (file)
@@ -36,7 +36,7 @@ class AptProxyBootstrapExtraBootstrappingFilter extends BaseAptProxyFilter imple
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 5b484273fb50671306fc8848abe77865b9241e1c..9b04f1bdcf7970f27e41007054bde4a06eda6f0d 100644 (file)
@@ -36,7 +36,7 @@ class AptProxyBootstrapGenericActivationFilter extends BaseAptProxyFilter implem
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index e1e49b3ba468f4882721a7789e7798d64695c592..bc519412bb32dc1e79b2c4473f83568f5e4ffec0 100644 (file)
@@ -36,7 +36,7 @@ class ChatBootstrap???Filter extends BaseChatFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 494498aa92b2c5915506abb90c54796c2b2b4c75..c210218ac0e864d7077b8b22168fa03f249caeeb 100644 (file)
@@ -36,7 +36,7 @@ class ChatBootstrapExtraBootstrappingFilter extends BaseChatFilter implements Fi
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 0dea7c9b5e9b812fee2d224e44222760e7bed381..22b9bf0d265af6da6e6d957a65486f32c170cf30 100644 (file)
@@ -36,7 +36,7 @@ class ChatBootstrapGenericActivationFilter extends BaseChatFilter implements Fil
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 7c320bd35f3638d415f5e1fcc57f7937dcab9472..983517657621d3b8cde05eb99686334d2b290282 100644 (file)
@@ -36,7 +36,7 @@ class CrawlerBootstrap???Filter extends BaseCrawlerFilter implements Filterable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 420afabd8da3da14d1aaf90ed7c9fda0b711d510..9ea9b474ff3eae824890bee78dda3c6c5a578ec6 100644 (file)
@@ -39,7 +39,7 @@ class CrawlerBootstrapExtraBootstrappingFilter extends BaseCrawlerFilter impleme
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 8d254ab16993f84aaff1a9b956fa1403b8c2fba0..e4935d64ddfe36a618b3bab2d6e3a41eb61d7a9a 100644 (file)
@@ -39,7 +39,7 @@ class CrawlerBootstrapGenericActivationFilter extends BaseCrawlerFilter implemen
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index e9f468c0e0a13bbeb37695db4c5ee7e040b8ecff..d23f4ee1a2602385c1c02640f38072082086b333 100644 (file)
@@ -36,7 +36,7 @@ class CruncherBootstrap???Filter extends BaseCruncherFilter implements Filterabl
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 5c74bacf19a076ccb75d511bafd01e48cb19173c..e22a5ea4e5e989586868dbfbce7e88f0d3d9af27 100644 (file)
@@ -39,7 +39,7 @@ class CruncherBootstrapBufferQueueInitializerFilter extends BaseCruncherFilter i
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 6910bd2e835773d4e652981f11d3b24612ab0e3e..57b17f3354678f3589694350154704ed3c9ed5df 100644 (file)
@@ -39,7 +39,7 @@ class CruncherBootstrapExtraBootstrappingFilter extends BaseCruncherFilter imple
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 0a604fe1e1c189b7a8e0df9c5829d9e2c90154e6..152a0db02903ebd0205edd6f545d824f7953e52e 100644 (file)
@@ -39,7 +39,7 @@ class CruncherBootstrapGenericActivationFilter extends BaseCruncherFilter implem
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index b3be00571ec0faebf74f39e9e337ebbc0d88ce5d..c86777e128a8d53732fc251c224232e802f3a1d2 100644 (file)
@@ -39,7 +39,7 @@ class MinerBootstrap???Filter extends BaseMinerFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 2ab83f877aa12c7bfe0c6dd05f4d4cc69bdc559a..9bf5cbd2aed0ad674b3958fc8cbd63ce2286fc05 100644 (file)
@@ -39,7 +39,7 @@ class MinerBootstrapBufferQueueInitializerFilter extends BaseMinerFilter impleme
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 19de999008b61715180789162f29262e8d508e81..f14f60cdb772f0b272ecc3e74bb320e49a37e49b 100644 (file)
@@ -39,7 +39,7 @@ class MinerBootstrapExtraBootstrappingFilter extends BaseMinerFilter implements
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index d38d94360e016c00534400ac103815379ffb9131..53c4621c6d2668778e0961d53f47fb6d6feefd1c 100644 (file)
@@ -39,7 +39,7 @@ class MinerBootstrapGenericActivationFilter extends BaseMinerFilter implements F
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 17586301e0cab591c3dd010c3cf348e01d86292e..9707a9367004e726e9b14aa2a8cd662981afd930 100644 (file)
@@ -39,7 +39,7 @@ class NodeBootstrap???Filter extends BaseNodeFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 6c6a2dc6cbd4bf9ceee1771d418bab95dbf6ba32..499ef97153fbf499c0f3c53756535198e968944a 100644 (file)
@@ -39,7 +39,7 @@ class NodeBootstrapExtraBootstrappingFilter extends BaseNodeFilter implements Fi
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index cdb0d22da301983101ae220875de1697f71a9670..b6bb721b633ed47bfb21c297deb09492144d78d5 100644 (file)
@@ -39,7 +39,7 @@ class NodeBootstrapGenerateNodeIdFilter extends BaseNodeFilter implements Filter
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index a13e29751a3fbf2480261a10f90b3d052c38b51d..2ed12e960c90c77cf0f7696451b5340ad468b2ed 100644 (file)
@@ -39,7 +39,7 @@ class NodeBootstrapGeneratePrivateKeyFilter extends BaseNodeFilter implements Fi
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 6939f816ac9da0d76ceb55dc4cdfbc2252dd5627..ee0e7cc56cdba54067bd08016cdc25b8098345c8 100644 (file)
@@ -39,7 +39,7 @@ class NodeBootstrapGenerateSessionIdFilter extends BaseNodeFilter implements Fil
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index dd944521075a37b8b64cc3634aca21bc05ea50da..7c39b538f896c37eb491decb3f564881e7248793 100644 (file)
@@ -39,7 +39,7 @@ class NodeBootstrapListenerPoolFilter extends BaseNodeFilter implements Filterab
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 9ad6119370747a4beac9165a205252d238739cfa..40961c9d77fa500952211803e57235eefe44e119 100644 (file)
@@ -35,7 +35,7 @@ class Cruncher???Filter extends BaseCruncherFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 3610c254acf77d1d13d4330911acf293c4346d42..e8a8595565bf7d69690aa16dc85fd3a9e673e3de 100644 (file)
@@ -38,7 +38,7 @@ class ChatInitializationFilter extends BaseChatFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 506b386cbd93e01734c242296a8973b3b77953fd..253d259c2bf5f48b2dec115dc7c3eebe5c0622a8 100644 (file)
@@ -35,7 +35,7 @@ class ChatPhpRequirementsFilter extends BaseChatFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 7f4dd85685a1fe3b858e33bfab75fafb658241fb..ec773a38e92fbc9ae550481d5fc7f52516445466 100644 (file)
@@ -36,7 +36,7 @@ class ChatWelcomeTeaserFilter extends BaseChatFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index bae7066f047a96f9742c10c36bdf3da3ccaf6ed8..da1d2d80db2f7a4dda0e612a33f9a21d625aaf0f 100644 (file)
@@ -39,7 +39,7 @@ class Hub!!!???Filter extends BaseHubFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 3b4d9c7d5ba9c3a5d03e68cc3b326562c0382e4e..3f1f6ac5b7751126f748002be869edb460c10a54 100644 (file)
@@ -41,7 +41,7 @@ class CrawlerInitializationFilter extends BaseCrawlerFilter implements Filterabl
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index c7a81c8e101a79923de84f1a2ff130941548ba10..13aeee00e3064d72b291fd0d47c1b24200330975 100644 (file)
@@ -38,7 +38,7 @@ class CrawlerPhpRequirementsFilter extends BaseCrawlerFilter implements Filterab
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 8181ef2b4bb6ecbcb9ca709c1d7175125a5d9aef..e8cbf0386674c7903289cee7cb6c3d137bb6494e 100644 (file)
@@ -39,7 +39,7 @@ class CrawlerWelcomeTeaserFilter extends BaseCrawlerFilter implements Filterable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 1d2d4c89e53ba241a0281b318acb6eac369f1ba7..1b689eb65969afa45778c78bae3f177075458e38 100644 (file)
@@ -35,7 +35,7 @@ class Cruncher???Filter extends BaseCruncherFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index cdbd8014dac4947edfe894a6b1a74d61782d4d51..fa6bb7468583be3e89f9c994e1a6f442d82c8d61 100644 (file)
@@ -41,7 +41,7 @@ class CruncherInitializationFilter extends BaseCruncherFilter implements Filtera
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 5921e693f75e1275f1b3f3caa94d4f1aafaacc98..89d5c5c86d716294bf52892961d74ed11b095c1b 100644 (file)
@@ -38,7 +38,7 @@ class CruncherPhpRequirementsFilter extends BaseCruncherFilter implements Filter
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 491b48b76b7cfd8c165ffeff70ba2d9c8609ab46..aa3d966db842b213b433bb6377e3412901750d1b 100644 (file)
@@ -39,7 +39,7 @@ class CruncherWelcomeTeaserFilter extends BaseCruncherFilter implements Filterab
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 2a0008ca0b90a231991155902e9ab66a44306f14..bff7e060efef340e23db72980f2d84728ddfb1cc 100644 (file)
@@ -35,7 +35,7 @@ class Miner???Filter extends BaseminerFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 40a9a9e148795c2d2f6cf6953918fbe7bcd88d7b..82f2cef8b4b14809951197917068736fd4660d04 100644 (file)
@@ -42,7 +42,7 @@ class MinerInitializationFilter extends BaseMinerFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index ef62398890e6b3445152842164e30795921da29c..d8d138a6f486ec72f764751de1226d83ee08cc40 100644 (file)
@@ -39,7 +39,7 @@ class MinerPhpRequirementsFilter extends BaseMinerFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 4e17f36f3b63602bac57261efbbb4f16aa82cd58..8f07a7f73003c27bfd488f0d4d6eb1ef2fe7a5cd 100644 (file)
@@ -39,7 +39,7 @@ class MinerWelcomeTeaserFilter extends BaseMinerFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index e9610b989d66a30afe2f7973447b3e8e9c43292f..81b8322e1d4d1f0db1cdd59fa88a29a36f340def 100644 (file)
@@ -38,7 +38,7 @@ class Node???Filter extends BaseNodeFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 1e52a52dd002b7aad3b340ae671107a292011f3b..b0fc9ba0689db3a478c0e629a7dd291e0f9ece8f 100644 (file)
@@ -39,7 +39,7 @@ class NodeInitializationFilter extends BaseNodeFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index b9df90060a16cdcaa33286ee416d8af82758f23b..1774ae70e4058c3fb8ab7ab3ffa52cabe163abba 100644 (file)
@@ -39,7 +39,7 @@ class NodePhpRequirementsFilter extends BaseNodeFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 8e33a275329725b41102342acec2b667bc28a63d..de54b2c063babeb239f8ce02e6c98d1a0e3dce2f 100644 (file)
@@ -39,7 +39,7 @@ class NodeWelcomeTeaserFilter extends BaseNodeFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 16c43b78bbcfc3ce8206df9eec3d644f5b91f6fb..a300aeb9d4cbcd7c06d51659a39bdea824920f46 100644 (file)
@@ -38,7 +38,7 @@ class AptProxyShutdownFilter extends BaseAptProxyFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 00d3e4c01dc7e1f582a31ef92faeca74a6ee3da4..ba0cff43b13b76d347730f1cc0ebca4f6ea473d6 100644 (file)
@@ -38,7 +38,7 @@ class ChatShutdownFilter extends BaseChatFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 3938400b0a776f8bc049f308f5e2bb717ecce4cc..ad9f3dd8351b16424e1cdfa71a239383b202f12d 100644 (file)
@@ -41,7 +41,7 @@ class CrawlerShutdownFilter extends BaseCrawlerFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 9fd54fa285eba8d7f30eefb8da497b6f6dea5e72..0484924725a828dc97bb5b50e8557648f2e04ca8 100644 (file)
@@ -41,7 +41,7 @@ class CruncherShutdownFilter extends BaseCruncherFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 77819c515ca46c09b5f3e2087652d3f169c18c0c..1d82696390cabf0998112a271695883a8380cde2 100644 (file)
@@ -41,7 +41,7 @@ class MinerShutdownFilter extends BaseMinerFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 759d4096296adbd94c27de8a18900f145338ac1a..6cae6fe307466ef855d04fbbb34be7bb69eda499 100644 (file)
@@ -39,7 +39,7 @@ class HubShutdown???Filter extends BaseNodeFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 84647b792f5c0e73a7cd6dcdb4906cfa34de5749..e8a5d67af0da72f3c54d19c1fb699cd9d733ea49 100644 (file)
@@ -39,7 +39,7 @@ class NodeShutdownFlushNodeListFilter extends BaseNodeFilter implements Filterab
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 68609ae1fb0acbb524bdf91c27261dd5261b473f..bc33c238af4cba66d001702d6ec86b021b3afc90 100644 (file)
@@ -41,7 +41,7 @@ class NodeShutdownNodeFilter extends BaseNodeFilter implements Filterable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 9b72fc66719514fa26c26b1b800d4aaff4aae7d9..438f00859d340b75395544b2ef2788ea836bf350 100644 (file)
@@ -39,7 +39,7 @@ class NodeShutdownTaskHandlerFilter extends BaseNodeFilter implements Filterable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index f756db815814142b50f869b684fda39e0e23a66a..e1d20d139aea4cb3c718f04ed1913303ab19eaa5 100644 (file)
@@ -44,7 +44,7 @@ class PackageAnnouncementAnswerTagFilter extends BaseNodeFilter implements Filte
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index e10b6299f24d2872af1e421afb24b6b769ae2e39..5011dc674a088270468db01d17baf2a136179ff7 100644 (file)
@@ -44,7 +44,7 @@ class PackageDhtBootstrapAnswerTagFilter extends BaseNodeFilter implements Filte
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 43e8989439f0c13fe7325fd0fd362ad6e56cf2ef..83e22a3ec51eff1c5e0fb5a308373582f58de6bc 100644 (file)
@@ -44,7 +44,7 @@ class PackageRequestNodeListAnswerTagFilter extends BaseNodeFilter implements Fi
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 6cc848085be63624da5a3ed1f12a40d0c1b4266a..6c189dcee8b8347c7778af1785a6e481a24085e6 100644 (file)
@@ -42,7 +42,7 @@ class PackageAnnouncementTagFilter extends BaseNodeFilter implements FilterableP
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 59d9c1aa23dd244a490fba2276eb8a6b41c78b99..103eb4aaf675c2e2484ec7633bfd9639ce8a807e 100644 (file)
@@ -43,7 +43,7 @@ class PackageDhtBootstrapTagFilter extends BaseNodeFilter implements FilterableP
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index a0a114db0d1c09edf760b1f78dbf9018bb2788d7..eb7819a2e0ddb9f962de39a6d93e2a2e4c4ca2b7 100644 (file)
@@ -43,7 +43,7 @@ class PackageRequestNodeListTagFilter extends BaseNodeFilter implements Filterab
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 947c8801402f104eeac701ce6406fb58c3341dd6..d9053dde22e9a18c1377cc6c286e7de96024fc03 100644 (file)
@@ -44,7 +44,7 @@ class PackageSelfConnectTagFilter extends BaseNodeFilter implements FilterablePa
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index ed79417da45c40ff3ea430b37152f3a8a9fa6897..826e638a94709008add7e54f301257e63400d716 100644 (file)
@@ -37,7 +37,7 @@ class AptProxyTaskHandlerInitializerFilter extends BaseAptProxyFilter implements
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index dde2617f4023a0b0bc44dd2901acd806eefa7f91..536b471668cf4797d371220e487052350f2c4930 100644 (file)
@@ -37,7 +37,7 @@ class ChatTaskHandlerInitializerFilter extends BaseChatFilter implements Filtera
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index e8f31f1212287350d73bec6954365e26d09d803e..8a264dfcc7af4cba63269a2bf4d339c1544e37ea 100644 (file)
@@ -41,7 +41,7 @@ class CrawlerTaskHandlerInitializerFilter extends BaseCrawlerFilter implements F
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 60f8d384ec9cd6bee848d8a134489c97e1091cd0..af6064e59e41eadd8c8cea929e7aa17e37df2245 100644 (file)
@@ -40,7 +40,7 @@ class CruncherTaskHandlerInitializerFilter extends BaseCruncherFilter implements
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index de20bd4a06a34475caefa450920aa5def5b22569..768f0456820932611b92f5de30e49cc8b9c29f7e 100644 (file)
@@ -40,7 +40,7 @@ class MinerTaskHandlerInitializerFilter extends BaseMinerFilter implements Filte
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index f2c4a4ff4b4a554c228d3a53d7cd256f698085db..308ce1ac414b15e4c9ee197c094da3ae71badb47 100644 (file)
@@ -41,7 +41,7 @@ class NodeTaskHandlerInitializerFilter extends BaseNodeFilter implements Filtera
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index a98d016c934b0a145afc26bc233c277af2d62415..029ae2700ff930a8187e4d29371c732b8b4f9684 100644 (file)
@@ -94,7 +94,7 @@ class ChunkHandler extends BaseHubHandler implements HandleableChunks, Registera
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 02ff30957b10e8cf2ecf6007ce9758ef165b0b48..0cf1be41804eb83426f13c4c7a9815cb7502e2fe 100644 (file)
@@ -45,7 +45,7 @@ class NodeAnnouncementAnswerOkayHandler extends BaseAnswerStatusHandler implemen
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index f2e8c40252732167ef1b13a7aa0cf8bb8263fd01..07ae49dd49f097f77a7da04abf72158e74dd3b3f 100644 (file)
@@ -27,7 +27,7 @@ class ???Handler extends BaseAnserStatusHandler implements HandleableAnswerStatu
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
@@ -57,7 +57,5 @@ class ???Handler extends BaseAnserStatusHandler implements HandleableAnswerStatu
        public function handleAnswerMessageData (array $messageData) {
                $this->partialStub('Please implement this method.');
        }
-}
 
-// [EOF]
-?>
+}
index 45c6a96409b25512f537a356337ba7bf338a27dd..9876258e6c9561617f4003e7df07691710c7d3e2 100644 (file)
@@ -40,7 +40,7 @@ class RequestNodeListAnswerOkayHandler extends BaseAnswerStatusHandler implement
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 128dad942a20ba7fc6b0516ee818b8965e79719b..962ca197629e95914d4e770f18e87f36d7bd6652 100644 (file)
@@ -33,7 +33,7 @@ class ???NetworkPackageHandler extends BaseNetworkPackageHandler implements Netw
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index f8990da2733a7b2ac0ab852038c4bd10a99e0814..8aa548ab343d61ede8514f75f12e71fb5e59763a 100644 (file)
@@ -46,7 +46,7 @@ class NodeMessageAnnouncementHandler extends BaseMessageHandler implements Handl
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 1cc18d3952d1c92c35a5f6abca8e51829ae50e2a..93ffd31483b5c2efc0926e36b2fccfb81d9b7819 100644 (file)
@@ -45,7 +45,7 @@ class NodeMessageAnnouncementAnswerHandler extends BaseMessageHandler implements
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 3fc075abf030ec0c89ef1cd097fc411270ae2051..03e49710544a4675e73cf011dbd5d62841a210ca 100644 (file)
@@ -45,7 +45,7 @@ class NodeMessageDhtBootstrapAnswerHandler extends BaseMessageHandler implements
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index eae09da9538ffe257fc6f462d90891243e25ec09..71998974aa303262497c734e05771dd2a4759b92 100644 (file)
@@ -45,7 +45,7 @@ class NodeMessageRequestNodeListAnswerHandler extends BaseMessageHandler impleme
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 8e7fb60e3a4da3a9d1ddce55d3358a3cc79bb765..53890c5a077e66f61bb1034f2e0090690bc651aa 100644 (file)
@@ -33,7 +33,7 @@ class NodeMessage???Handler extends BaseMessageHandler implements HandleableMess
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
@@ -115,7 +115,5 @@ class NodeMessage???Handler extends BaseMessageHandler implements HandleableMess
        protected function removeMessageConfigurationData (array $messageData) {
                $this->partialStub('Please implement this method.');
        }
-}
 
-// [EOF]
-?>
+}
index 39076a58d942d0cea1f45f6da5bd0afac3a2f2f1..8b3a362d2e9062c5addf27d8a21ecac6b492d135 100644 (file)
@@ -46,7 +46,7 @@ class NodeMessageDhtBootstrapHandler extends BaseMessageHandler implements Handl
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 4eced0938eb63720af83bc21fc640b4b6486606c..40ea9932e8c725c77a0bd13e258ee2f153f06a38 100644 (file)
@@ -46,7 +46,7 @@ class NodeMessageRequestNodeListHandler extends BaseMessageHandler implements Ha
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 4fd0a1b2e83fcb56d3c9ca5b634d2f678589fc97..7bcf4832cdaada678324c42b1acaf4c5ccec1099 100644 (file)
@@ -43,7 +43,7 @@ class NodeMessageSelfConnectHandler extends BaseMessageHandler implements Handle
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 75134b4d313e5d1143a44dd3b5f052c22184c980..888aeb3cd1b9b0627bf8d88611fef1ed063efd45 100644 (file)
@@ -332,7 +332,7 @@ class NetworkPackageHandler extends BaseHubHandler implements Deliverable, Recei
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index c36608aaa2c3fd3103ebda172a52f9352351b3c4..b08e29fe1ff68e22b123de2f5222be10c2d54358 100644 (file)
@@ -37,7 +37,7 @@ class ???ProtocolHandler extends BaseProtocolHandler implements HandleableProtoc
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 76df414be71701c7de300464e1af5b4512258dac..c9abb487c413060f1e2feea919fa01a455ad6a5e 100644 (file)
@@ -35,7 +35,7 @@ class ???ProtocolHandler extends BaseIpV4Handler {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 1f67a8f5b1b2d5c508974f29e4b1faab6e8005ed..99f774170e982e6627da068a57eb58c14149468a 100644 (file)
@@ -38,7 +38,7 @@ class TcpProtocolHandler extends BaseIpV4ProtocolHandler implements HandleablePr
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index ecf85a6037bf4a1aaae2ed4610982e9a475bc4dd..57c9bcdac7c4b02aacd36cb919011289206b2f1d 100644 (file)
@@ -34,7 +34,7 @@ class ???RawDataHandler extends BaseRawDataHandler implements Networkable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 18614dad20df48d3ad8c4734b628a92e65577bcd..3223affd31ef3e654e406caea644375c84944d86 100644 (file)
@@ -35,7 +35,7 @@ class SocketRawDataHandler extends BaseRawDataHandler implements Networkable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index fff7d33cf53b722314d1899e484431635a85cca0..ccc4b08d4ddaf0e27e23ff3a393e3d0f39fccca8 100644 (file)
@@ -173,7 +173,7 @@ class ???Listener extends BaseListener implements Listenable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index eeff201d0832134d75110e8c9d4529d6b5b3eedd..e251492a895de6894b90398d635e0535fee638ea 100644 (file)
@@ -47,7 +47,7 @@ class TcpRawDataHandler extends BaseRawDataHandler implements Networkable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('TCP-RAW-DATA-HANDLER: CONSTRUCTED!');
                parent::__construct(__CLASS__);
index 72dcedf171d72b249eb6bf2ad414e7c37c1b7c09..4483b23226c50662c9d056edadd5e1c01cc35c7d 100644 (file)
@@ -36,7 +36,7 @@ class UdpRawDataHandler extends BaseRawDataHandler implements Networkable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 38f7f5608ad0c15eeb40d6bb91f958cc24dadfac..455f740b51f98867080d7c31b46ee91d76cb5938 100644 (file)
@@ -36,7 +36,7 @@ class !!!???Helper extends BaseHubSystemHelper implements Helpable!!! {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index c5ff9ee787b0fa9963c2b3c06accc2c130971d31..4ec4ec13fc113aec9de465f9a6f6d267b84568a3 100644 (file)
@@ -35,7 +35,7 @@ class ???ConnectionHelper extends BaseConnectionHelper implements ConnectionHelp
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 0d83014a6cc2a7ddff01e60710dd7d4824ea52c8..781b017e2b18593b9754ce77a9ce1f098ec64b60 100644 (file)
@@ -43,7 +43,7 @@ class TcpConnectionHelper extends BaseIpV4ConnectionHelper implements Connection
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index f43cf8de995dd46a64b42cb5b5c3e1e5472af695..9e5efc6e7872c2ac7282ba82956260107d0d848c 100644 (file)
@@ -37,7 +37,7 @@ class UdpConnectionHelper extends BaseIpV4ConnectionHelper implements Connection
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 58bc676766be4fb4aeda52241d4a38a9e511ccda..70c68a1f1909541c65ff0947af1ad454e4e02a69 100644 (file)
@@ -43,7 +43,7 @@ class DhtBootstrapHelper extends BaseHubSystemHelper implements HelpableDht {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index fac3ecc05215cd1c933b83eec87a3eb76961bdb2..9c5813a34aaa413b1af3c8b56752a0f2668e6137 100644 (file)
@@ -43,7 +43,7 @@ class DhtPublishEntryHelper extends BaseHubSystemHelper implements HelpableDht {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index ec5ea4c45c04d1e3adb6033ad179050226430b53..25e3ed9266e2be468896bfecca0994fa83c3586a 100644 (file)
@@ -27,7 +27,7 @@ class ???MessageHelper extends BaseMessageHelper implements MessageHelper {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
@@ -44,7 +44,5 @@ class ???MessageHelper extends BaseMessageHelper implements MessageHelper {
                // Return the prepared instance
                return $messageInstance;
        }
-}
 
-// [EOF]
-?>
+}
index 7d658fa7319208fb1924acb511b76b8cff20704a..57076c595b58f0531dfc890ea4edd794b32722f7 100644 (file)
@@ -38,7 +38,7 @@ class CryptoRandomUnitMessageHelper extends BaseMessageHelper implements Message
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 50a6dfa8ec123b8044f55f16e904c2d44478677a..2cc85edb36b5834bba315fbae8eb846500d714e2 100644 (file)
@@ -42,7 +42,7 @@ class NodeAnnouncementHelper extends BaseNodeHelper implements HelpableNode {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 47efe76622a66e1678d47e6cc67069749bb6f0e1..e23fd84d2e9ca94ebe240b27f8b5a61d45885af5 100644 (file)
@@ -43,7 +43,7 @@ class NodeAnnouncementMessageAnswerHelper extends BaseHubAnswerHelper implements
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 9aa8812293350ff879e2c8996827b162ac799f60..04bbdf48fc82f1e68cab3f5db822d0f4e728ef25 100644 (file)
@@ -43,7 +43,7 @@ class NodeDhtBootstrapMessageAnswerHelper extends BaseHubAnswerHelper implements
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 8a1a0e609bdb8a7dcd7e8458433bd5500c133384..aefa1735e0caeb7130dd4da0f06e1d9250f9ae99 100644 (file)
@@ -43,7 +43,7 @@ class NodeRequestNodeListMessageAnswerHelper extends BaseHubAnswerHelper impleme
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 6416df98849d0d36ce7bb6981165201180343a59..f467cc7c23b83afb5018bdca45510986135b1d27 100644 (file)
@@ -38,7 +38,7 @@ class Node???Helper extends BaseNode implements HelpableNode {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 85b1aad1e033275680d8d77c22e822b045e77ed2..b168cff7989b0c93e873b28e7c8000a01aed8900 100644 (file)
@@ -43,7 +43,7 @@ class NodeSelfConnectHelper extends BaseNodeHelper implements HelpableNode {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 594f1659f8b0a615fabdf932badec35c422eb7f7..877745731481260108e718d9e58cc01d8d42a2a2 100644 (file)
@@ -42,7 +42,7 @@ class NodeRequestNodeListHelper extends BaseNodeHelper implements HelpableNode {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 400fac1fe304d26425dbed68cfb0f3311833f433..e67d25e9113e1e1f26c525bfd76c135be6cbaf7a 100644 (file)
@@ -27,7 +27,7 @@ class ???WorkUnitHelper extends BaseWorkUnitHelper implements UnitHelper {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
@@ -64,7 +64,5 @@ class ???WorkUnitHelper extends BaseWorkUnitHelper implements UnitHelper {
        public function generateUnit () {
                $this->partialStub('Please implement this method.');
        }
-}
 
-// [EOF]
-?>
+}
index 61e2345b010be4547e05b5541779e35f89a5952f..d31a460b1e9001e0b9e527ce2b385e7e9135ba7b 100644 (file)
@@ -34,7 +34,7 @@ class CruncherTestUnitHelper extends BaseWorkUnitHelper implements UnitHelper {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 6d7d307543a429b698c337814459d7174e29a4c9..498dc08b2c29231d354e12d7c40ec3ebc3cea7ce 100644 (file)
@@ -34,7 +34,7 @@ class ???Info extends BaseInfo implements ShareableInfo {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index db78adeb709528f48f653a6be417b567df812a07..09916a78799ef7a8bf8f8363fb71b1f0cddbeec1 100644 (file)
@@ -62,7 +62,7 @@ class ConnectionInfo extends BaseInfo implements ShareableInfo, Registerable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 7512b220737b1043075df0b4f9a89af1ae779f2f..9a13d34333cb87eafa30877139f71742ce42082d 100644 (file)
@@ -44,7 +44,7 @@ class NetworkListenIterator extends BaseIterator implements Iterator {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 591e8f5aef93d6643e7ee397350eef11a72550c4..6ff89cdd981efc6a04fdb3d54e15a0c4e29a8b65 100644 (file)
@@ -36,7 +36,7 @@ class NodePingIterator extends BaseIterator implements Iterator {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index ff38d016be3424fd5616d1427ffbf58bc989b025..626c7f9fb99a99622f317612208d0666d1b3546b 100644 (file)
@@ -36,7 +36,7 @@ class Handler???Iterator extends BaseIterator implements Iterator {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 10b604f3d24005a84afb2f7b957e2d669fdbf03b..7220db2a957b16b36eaae6d71a41eda2cb411ccc 100644 (file)
@@ -44,7 +44,7 @@ class HandlerPoolIterator extends BaseIterator implements Iterator {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index c489a86eba2e21d56be3a5415f42d4fcc307a5c7..dd1c722d5d1bb13b25347a1d38853552e689b961 100644 (file)
@@ -45,7 +45,7 @@ class MonitorPoolIterator extends BaseIterator implements Iterator, Registerable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index b0f57f83d2a56fc7cac067af1ebfc4b0f7f2edc4..c71b375e78fc38fb2eb5736f0c006a47fec7a67b 100644 (file)
@@ -36,7 +36,7 @@ class Shutdown???Iterator extends BaseIterator implements Iterator {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index e6a254e4e4997f52ca898bb75bba39cca356e6da..283c78a6323554db98702a77a33f041cf533f8b2 100644 (file)
@@ -42,7 +42,7 @@ class ShutdownPoolIterator extends BaseIterator implements Iterator {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 0eb4290d43f349e0f867b381c3a7078a5cd78e7b..cc63bc4cdffbcc8ae4d97c37a841bda19aa05e56 100644 (file)
@@ -45,7 +45,7 @@ class TaskPoolIterator extends BaseIterator implements Iterator, Registerable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 190155bddcc0ec0b41a25bf11007b250b76fabb2..ed388955d51c7e02e21670aeb547ad4dac6c1dfe 100644 (file)
@@ -53,7 +53,7 @@ class TestUnitKeyProducerIterator extends BaseIterator implements Iterator {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index f107a4ff922a6754767963be9c84d8373744e71c..7e967e3c9a2f06746a08ec5e0231c3cb71542e1c 100644 (file)
@@ -36,7 +36,7 @@ class ???Listener extends BaseListener implements Listenable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index b71322491702d5c6ff86380b5e2773b6dd584b79..cfbe1e0e500360ca8221420710802d17fab67122 100644 (file)
@@ -42,7 +42,7 @@ class SocketFileListener extends BaseListener implements Listenable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 2f1e5f02cec7d6fcd5fb54e2a6fbe27dd30da28c..0c4eaf888c34b196d2b0f9fd27094e0c131150c5 100644 (file)
@@ -39,7 +39,7 @@ class SocketFileListenerDecorator extends BaseListenerDecorator implements Liste
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index b1a9084efbf6e774e4b8f160ccf66baaf8d5c9a6..4b5116f33c23f46a16db873c88c2e3d4c8c95107 100644 (file)
@@ -172,7 +172,7 @@ class ???Listener extends BaseListener implements Listenable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 4eaa42c1bc2e59a3456c7676d3221f572e52dc2d..ca273ff2ad1f0e1e6942688a1eb7d402d6fdb990 100644 (file)
@@ -39,7 +39,7 @@ class TcpListener extends BaseListener implements Listenable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 07e1ab3789dc273113df17e85db3f6614a2676a0..f35d319ac405bc3fb402e550853bb2dd38e2088f 100644 (file)
@@ -39,7 +39,7 @@ class ClientTcpListenerDecorator extends BaseListenerDecorator implements Listen
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index c0786e55280bd00a324e1a8ccdbea422ff807cd0..fc74a69d753e842282ee0b2aecb2aed32b769d71 100644 (file)
@@ -39,7 +39,7 @@ class HubTcpListenerDecorator extends BaseListenerDecorator implements Listenabl
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index c390fcd6508c6e290907a7fd751c97a344424c98..3ada717655b6ee0bf7b31195c2cbba202ec9d429 100644 (file)
@@ -37,7 +37,7 @@ class Udp???Listener extends BaseListener implements Listenable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 9c41cac08d96bacb7873f75b8639e588e19b1b62..3b26c54a28cb609018933efdb2202f475c4dd6b8 100644 (file)
@@ -41,7 +41,7 @@ class UdpListener extends BaseListener implements Listenable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 73cbb050f8d281237bc0dcd8d23e29a58cb7c8f5..a80c26113f4d49c2c2047bdbcb2eff02e1e420bc 100644 (file)
@@ -39,7 +39,7 @@ class ClientUdpListenerDecorator extends BaseListenerDecorator implements Listen
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 61d27b01f1765818060f8f33045cb426f42fc076..0cb502c89c6bc8830b2dbaa328c31d5650ab3029 100644 (file)
@@ -39,7 +39,7 @@ class HubUdpListenerDecorator extends BaseListenerDecorator implements Listenabl
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index ff6ef36956a1a40dda3e9ad91ddb4b1e2dade122..de0c933f31ae571f937fe3c531181846d5975306 100644 (file)
@@ -34,7 +34,7 @@ class HubList extends BaseList implements Listable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 7de3ce4ab68770254974a667fc1fdca7e4f307af..80eb724d7284dcc382e3bc4683ea3c1ebf90172b 100644 (file)
@@ -35,7 +35,7 @@ class PoolEntriesList extends BaseList implements Listable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 90308256a1a9ed971e7cd4fb2de48f825dea62a6..94e70f6d6ef0254f80c191746b4cef22f0d9db79 100644 (file)
@@ -35,7 +35,7 @@ class RecipientList extends BaseList implements Listable, Registerable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index a095747bf70145948e37f8b0cbe178bd80f18173..72525e4fb132efd070da99a6078aa9644f2f05d0 100644 (file)
@@ -48,7 +48,7 @@ class UniversalNodeLocator extends BaseHubSystem implements LocateableNode, Regi
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index d1896881b3292f3b5678874889ae3c2e62194b4e..f3ca7e18b71c5e7f2a6d32c1093da1d521e0d2da 100644 (file)
@@ -27,7 +27,7 @@ class Hub???Menu extends BaseMenu implements RenderableMenu {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index d4f8612d85bcadb7716844af0d470924f191b1df..d2199908b16ac91f81856b5633049e690503d9d0 100644 (file)
@@ -27,7 +27,7 @@ class HubIndexMenu extends BaseMenu implements RenderableMenu {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index d4bcfe09a1b330b09a629addd50caaae0dcb5301..4933ac24acdc95e132a72b98d48b831b3ea849ca 100644 (file)
@@ -40,7 +40,7 @@ class HubCoinMiner extends BaseHubMiner implements MinerHelper, Registerable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 8acf607ca7908de6522a8d1bc821f46a4e7f1a9e..fefd6cc99a48e3b06a08c964b00669e6da1c2a55 100644 (file)
@@ -33,7 +33,7 @@ class Hub???Miner extends BaseHubMiner implements MinerHelper, Registerable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 50abbdfd7e983be6f9c0ff22879f5c69bc62d67b..82b27a916ea75c6c8de38dab2db34de064e8aafa 100644 (file)
@@ -42,7 +42,7 @@ class HubBootNode extends BaseHubNode implements Node, Registerable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index fc90742c2fdfd787b7d6226fab7563dbcb97a3d3..6e9c4e2f5d6a44e34692885e6445423e4106eb68 100644 (file)
@@ -37,7 +37,7 @@ class Hub???Node extends BaseHubNode implements Node, Registerable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 072c509496860973632d8cf32bf3168821854f0c..0f09b9126d6f7b09ad1d3489e15eca6483ef7042 100644 (file)
@@ -41,7 +41,7 @@ class HubListNode extends BaseHubNode implements Node, Registerable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index d0ba61167ada6201dbcf4ef2bc46db41ec9a96ce..ddae2fe4311cc5bbce981463eb447b9386ef09f6 100644 (file)
@@ -41,7 +41,7 @@ class HubMasterNode extends BaseHubNode implements Node, Registerable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 535f23292a728fc6415d538a134582e980ce797c..6f7c5ae395d636447d1cdd5990c3604fb45903bd 100644 (file)
@@ -41,7 +41,7 @@ class HubRegularNode extends BaseHubNode implements Node, Registerable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index c4a7611d7ff89c84f2973a1d5ad1415fd26df672..b03613dd302b698061642fb9adf9f1a98887af41 100644 (file)
@@ -83,7 +83,7 @@ class PackageAssembler extends BaseHubSystem implements Assembler, Registerable,
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index d43eec428ae3af53e400b3427b8cfe96a22b5592..dfe84af194bac4ad65775c2a58f60cd2421a426b 100644 (file)
@@ -117,7 +117,7 @@ class PackageData extends BaseHubSystem implements DeliverablePackage, Registera
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 17fcb196a3593fbc517b7f722cb1c9fc021d20b0..83326ea678b2156b4b32d840658070da96d8f9e3 100644 (file)
@@ -131,7 +131,7 @@ class PackageFragmenter extends BaseHubSystem implements Fragmentable, Registera
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index b7130064402a51a11a11f47c88513894f9cf7627..9d493bf5241a89bd357ef2739ecbfcff09fd86ae 100644 (file)
@@ -37,7 +37,7 @@ class ???Pool extends BasePool implements Poolable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 5440ed279c9f96566d7838636631e5cc4c8c714a..964b22f4f2adc699c7bf0d27bf36a6c0ce698ed2 100644 (file)
@@ -38,7 +38,7 @@ class DefaultListenerPool extends BasePool implements PoolableListener {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 399bb988755293439924716e488347e9386cdc69..e6729e391120723a25daf5f659965b3619a0769e 100644 (file)
@@ -48,7 +48,7 @@ class DefaultPeerPool extends BasePool implements PoolablePeer {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index ce8f9836190f1cc533e0ec660b728d9ce2c52cea..9f22e76984667e8b6d80b70415e562c6ed84e8e8 100644 (file)
@@ -27,7 +27,7 @@ class ???Producer extends BaseProducer implements Producer, Registerable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index c4057641b530b95b8bb79a9f3d80a0884d1de2fc..f18c21c7ed21c755798743d1c8fe76f101a8168e 100644 (file)
@@ -39,7 +39,7 @@ class CruncherKeyProducer extends BaseKeyProducer implements KeyProducer, Regist
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 496247ad488a6cc08bce4ddd9656737db82c0f3f..28fe961b545dcf8c4cfc07097c7df143a5d472db 100644 (file)
@@ -41,7 +41,7 @@ class CruncherTestUnitProducer extends BaseUnitProducer implements UnitProducer,
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 7b8401dc323586250bd6673ce7633535d9eca3f5..6b12deea47aa97680085ef5cff58162901e42bc7 100644 (file)
@@ -40,7 +40,7 @@ class MinerRealGenesisBlockProducer extends BaseBlockProducer implements BlockPr
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index c33f1ac63f21421b292c1fdcaa1d6625da455cc3..5d033ed35d31a0285f4880d764c70fc77a366a01 100644 (file)
@@ -40,7 +40,7 @@ class MinerTestGenesisBlockProducer extends BaseBlockProducer implements BlockPr
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 2b5f852d7def672a356430615c474220c327357c..878d775a6f89b5330b0c715dd5e1070b15d210bc 100644 (file)
@@ -36,7 +36,7 @@ class ???Recipient extends BaseRecipient implements Recipient {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 5fcccba36962482221f067dca031d6d2a6200bd3..1ffe5035ee8a772fca446a8668817cf84bb2a976 100644 (file)
@@ -46,7 +46,7 @@ class DhtRecipient extends BaseRecipient implements Recipient {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 76d24d546fdc86d7774333f36e981c6649a36f9f..a63b7c391ca29ffb0857854efab082ec9e6592cb 100644 (file)
@@ -44,7 +44,7 @@ class DirectRecipient extends BaseRecipient implements Recipient {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index d65a7a79cd71a00027ff0fc910bb66e46a451aad..35285dc62ad01f37be887746115d95515b754d17 100644 (file)
@@ -42,7 +42,7 @@ class SelfRecipient extends BaseRecipient implements Recipient {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index fa5760e9af6c1fa1cb3a11d9c0cfd9607ec32f29..2b6b717a8df8acc563c9566003c1e45960483560 100644 (file)
@@ -41,7 +41,7 @@ class UpperRecipient extends BaseRecipient implements Recipient {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 1a5c98a185ce61a27f7ffb38c17c86341a5ef96c..0facda5605357ce1d6ad830497653bd3c07bbec3 100644 (file)
@@ -39,7 +39,7 @@ class ObjectTypeRegistry extends BaseRegistry implements Register {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 748d15a2c5cc81622f7032f1a2c26ec1f8d58e8a..48dc5edf6439541bb9588bae56a80830aaca9c97 100644 (file)
@@ -57,7 +57,7 @@ class SocketRegistry extends BaseRegistry implements Register, RegisterableSocke
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
@@ -119,7 +119,7 @@ class SocketRegistry extends BaseRegistry implements Register, RegisterableSocke
         */
        private function getRegistryKeyFromInfo (ShareableInfo $infoInstance) {
                // Debug message
-               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-REGISTRY: this=' . $this->__toString() . ',infoInstance=' . $infoInstance->__toString() . ' - CALLED!');
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-REGISTRY: ,infoInstance=' . $infoInstance->__toString() . ' - CALLED!');
 
                // Get the key
                $key = $infoInstance->getProtocolName();
@@ -173,7 +173,7 @@ class SocketRegistry extends BaseRegistry implements Register, RegisterableSocke
                        $key = $this->getRegistryKeyFromInfo($infoInstance);
 
                        // Debug message
-                       //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-REGISTRY: this=' . $this->__toString() . ',protocolName=' . $infoInstance->getProtocolName() . ',socketResource[' . gettype($socketInstance->getSocketResource()) . ']=' . $socketInstance->getSocketResource() . ',key=' . $key . ' - Trying to get instance ...');
+                       //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-REGISTRY: protocolName=' . $infoInstance->getProtocolName() . ',socketResource[' . gettype($socketInstance->getSocketResource()) . ']=' . $socketInstance->getSocketResource() . ',key=' . $key . ' - Trying to get instance ...');
 
                        // Get the registry
                        $registryInstance = $this->getInstance($key);
@@ -182,7 +182,7 @@ class SocketRegistry extends BaseRegistry implements Register, RegisterableSocke
                        $socketKey = $this->getSubRegistryKey($infoInstance);
 
                        // Debug message
-                       //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-REGISTRY: this=' . $this->__toString() . ',protocolName=' . $infoInstance->getProtocolName() . ',socketResource[' . gettype($socketInstance->getSocketResource()) . ']=' . $socketInstance->getSocketResource() . ',key=' . $key . ',socketKey=' . $socketKey . ' - Checking existence ...');
+                       //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-REGISTRY: protocolName=' . $infoInstance->getProtocolName() . ',socketResource[' . gettype($socketInstance->getSocketResource()) . ']=' . $socketInstance->getSocketResource() . ',key=' . $key . ',socketKey=' . $socketKey . ' - Checking existence ...');
 
                        // Is it there?
                        if ($registryInstance->instanceExists($socketKey)) {
index 06ab331fe414fb4d276288e845c4f1d394fa6d5f..9269b6e91272b3b9bcf4d7283783f36156c95a53 100644 (file)
@@ -36,7 +36,7 @@ class HubConsoleCommandResolver extends BaseCommandResolver implements CommandRe
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 224c0a814bfa959ffe36daa5220ed88d58f68dc3..23c3904393031d84f3b9c2d7e338869935bb2615 100644 (file)
@@ -36,7 +36,7 @@ class HubHtmlCommandResolver extends BaseCommandResolver implements CommandResol
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index c32efd587835a82f24b41ff1ca4847a52773266b..52233c59b6650833b0cf7a2dfe683d738c534379 100644 (file)
@@ -35,7 +35,7 @@ class HubConsoleControllerResolver extends BaseControllerResolver implements Con
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 695ab19458c222b8b5f25cf596bc9f22393ee51d..26921fe02d7f1e2b6ff8ae1babcbc06ed9d5cbcb 100644 (file)
@@ -35,7 +35,7 @@ class HubHtmlControllerResolver extends BaseControllerResolver implements Contro
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index a5abef1e14ed54a912e5756982209f46859f7e7f..bf6a3adac8334bb1403858bdc36ca616dffe5b89 100644 (file)
@@ -38,7 +38,7 @@ class !!!ProtocolResolver extends BaseProtocolResolver implements ProtocolResolv
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index f0da95607b4b9506cb23ba32d49a9910d6356998..4953632910fc1b999d5f27fa75180e54f697c489 100644 (file)
@@ -45,7 +45,7 @@ class TcpProtocolResolver extends BaseProtocolResolver implements ProtocolResolv
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 55cadb1dda91a5fb9219c86d8a70b013eee31143..7c8ff99f3461b4b244074098d1efc87d9abfba31 100644 (file)
@@ -41,7 +41,7 @@ class PeerStateResolver extends BaseStateResolver implements StateResolver {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 8f753dde0b923c8bd50127354e0674edc24e7adf..bbc7318dd8dd0aa29fd2ef01fddf4fa9c34cab32 100644 (file)
@@ -27,7 +27,7 @@ class ???Source extends BaseSource implements Source!!! {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 822697362490bf1760edf4cbd6c57f5b0f7ee5fc..08078203f131b208183abc07638b6e14cae2e9a8 100644 (file)
@@ -44,7 +44,7 @@ class TestUnitSource extends BaseSource implements UnitSource, Registerable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 57f3d0965491b311cf79fe9957108ca49d171624..493bca67dc05f92d6010d7f7b907c6d49ef927ac 100644 (file)
@@ -27,7 +27,7 @@ class Crawler???UrlSource extends BaseUrlSource implements UrlSource, Registerab
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 8d9739b2950e2c0dbe00fba4bb3db1f973299660..5c5e68e1bbe7ddc3b092c065201ecea6ac74cd53 100644 (file)
@@ -37,7 +37,7 @@ class CrawlerFoundRssUrlSource extends BaseUrlSource implements UrlSource, Regis
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 58a253112e6db73ceaa53f2dee40b3645434ab21..6d04c378c48fa3edc3197576e49333cf302c944c 100644 (file)
@@ -37,7 +37,7 @@ class CrawlerLocalStartUrlSource extends BaseUrlSource implements UrlSource, Reg
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 296650706a62037d4dca009254cea6037285bcff..1a129721a7f4e3cc44b765f7db78dfffdd8ac51c 100644 (file)
@@ -37,7 +37,7 @@ class CrawlerRssStartUrlSource extends BaseUrlSource implements UrlSource, Regis
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index a839a8821f2c5ba1512e66ae1f504e94807d2e08..9830b7d8ba5bc0223ecb5e47e0e49cbbb3dbf863 100644 (file)
@@ -88,7 +88,7 @@ class CrawlerUploadedListUrlSource extends BaseUrlSource implements UrlSource, R
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('CRAWLER-UPLOADED-LIST-URL-SOURCE: CONSTRUCTED!');
                parent::__construct(__CLASS__);
index d6a8ed0dae895fd8f6a463bbfc73babc15cb9bce..b6021603c26827c10485024f4676176497ba970e 100644 (file)
@@ -38,7 +38,7 @@ class CommunicatorActiveState extends BaseCommunicatorState implements Stateable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructo
                parent::__construct(__CLASS__);
 
index 8dd4733bfbcfec332ba1bc3b7e471c5f269f45fc..b2476306064a0c94264724423b1e02d9c83b1203 100644 (file)
@@ -33,7 +33,7 @@ class Communicator???State extends BaseCommunicatorState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index bab876f9edce4b213fb9589ebf1ea12e4e59993f..d24fad18272a73ec2bbeaee39e4a5db048f853ee 100644 (file)
@@ -39,7 +39,7 @@ class CommunicatorInitState extends BaseCommunicatorState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructo
                parent::__construct(__CLASS__);
 
index aee84475c201c0fafa5784df43d7d4a7b21b90da..5e88748059d4967c993e565459778b7d79e1601c 100644 (file)
@@ -37,7 +37,7 @@ class CrawlerActiveState extends BaseCrawlerState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructo
                parent::__construct(__CLASS__);
 
index d52df0dec922824243e12ad9ba4dda8fb87f9c89..f9f173d121df8e14f38b5d6a4b17cb9e9fb54c4c 100644 (file)
@@ -37,7 +37,7 @@ class CrawlerBootingState extends BaseCrawlerState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructo
                parent::__construct(__CLASS__);
 
index 12a34076b888aed08cb8158fac901ce650df7340..5b9dab7ed6cfbed3d9cacc144d85c94983b6efb8 100644 (file)
@@ -33,7 +33,7 @@ class Crawler???State extends BaseCrawlerState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index feb9bba4dd9357ec2878e1195723b0e9359070c7..953df8fa3de81090a56906e9738c63b4aa3b5e1b 100644 (file)
@@ -38,7 +38,7 @@ class CrawlerInitState extends BaseCrawlerState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructo
                parent::__construct(__CLASS__);
 
index 623000fb9c897fb62461e675029ba64b7d632c9f..9ad9e76cfc956694d6ea22399d83d9422c123dea 100644 (file)
@@ -34,7 +34,7 @@ class Cruncher???State extends BaseCruncherState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index e10be6a6cc87502003cfa5aa46ee16bb3c01a5df..c94113316ebfc5549b3b58bdbd457476a7f21966 100644 (file)
@@ -38,7 +38,7 @@ class CruncherInitState extends BaseCruncherState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index b4d2963c7d525416d81a646e97b25960d63c43a4..20f7b2727a478f189d9d5ca053045b9aadfd8bf0 100644 (file)
@@ -37,7 +37,7 @@ class CruncherVirginState extends BaseCruncherState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index f49e50dbfb727b8116c4f0695f96e1ecfa503d46..cc7c9ba042371c88d67de20fab857e9d873adc72 100644 (file)
@@ -36,7 +36,7 @@ class DhtActiveState extends BaseDhtState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 5bc8ec6541311c6563d8278459242e3984dd2dd3..6e97eb5fe25e735908f4e4d574f078da46ebdee3 100644 (file)
@@ -39,7 +39,7 @@ class DhtBootingState extends BaseDhtState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index db8eae199d7de8fbf0c30550c7ecbc619e0b62aa..1783ac08824c5cb84feb74ea04a14cfa4fa4cb3a 100644 (file)
@@ -36,7 +36,7 @@ class Dht???State extends BaseDhtState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 14d2f7db20b27b2ad17071ac700633baee576ad0..561170adfcb07a3ec91d26311895c6c35382a072 100644 (file)
@@ -38,7 +38,7 @@ class DhtInitState extends BaseDhtState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 23d3b04b0c8c999bdadb2f637481de709fd5d7b4..cfdca21380cc2356353c77fe99742b3aa5824438 100644 (file)
@@ -38,7 +38,7 @@ class DhtVirginState extends BaseDhtState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 29b39eba31a3ad809cc25bb816d91a6d316eda8a..a270efc118870a14d9d1e5b2f3da456e78c095e9 100644 (file)
@@ -39,7 +39,7 @@ class MinerBootingState extends BaseMinerState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 090c88c5cc4acc9be95a5a1a08ddcb72f4777da5..f4d29cf8c4089f1515b87ff286c320e5c22709c4 100644 (file)
@@ -34,7 +34,7 @@ class Miner???State extends BaseMinerState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index ec131be253bf46e634be5f057627079f7b434881..9deaf345f34b44f002ecbf91b4887482f12b3318 100644 (file)
@@ -37,7 +37,7 @@ class MinerInitState extends BaseMinerState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index c2e404c892f87bde66a5a67c80fc005402bb61a8..8c1fe0c285063d43e4f0b5203f9b963cf3a1bf54 100644 (file)
@@ -34,7 +34,7 @@ class MinerVirginState extends BaseMinerState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index eefe141ef47c6dda735b53d8f75bf1edb97fbbb4..0f3cf0f51266fbfc66129c8a3969d7560d2fc6fe 100644 (file)
@@ -37,7 +37,7 @@ class NodeActiveState extends BaseNodeState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 4061a9a60d12a3b305b07c312d4827801fa5cf73..486ea3373a6b8e820e70bc277e37b41b8f037ec9 100644 (file)
@@ -33,7 +33,7 @@ class NodeAnnouncementCompletedState extends BaseNodeState implements Stateable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index f93870358492eec01a92825d787acbd97067e106..a6c724dddcbd80afc56393e65b5ed46d831cee29 100644 (file)
@@ -36,7 +36,7 @@ class NodeAnnouncingState extends BaseNodeState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index b574e98e7fff540fc04ef5fb5f29fe54ef68ee8e..b2b4020b3c8f6a92a9ce935a9aaf9994fb99de65 100644 (file)
@@ -36,7 +36,7 @@ class Node???State extends BaseNodeState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index cd453126c0c0d6ea38988e17c9e8944ab4dbc718..2ff320e7f924e9843089af2144667f2c9608e26d 100644 (file)
@@ -36,7 +36,7 @@ class NodeInitState extends BaseNodeState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructo
                parent::__construct(__CLASS__);
 
index a7b8b15646ea7bda94b4714f3c9428c359096c77..b4c640103e5d799a9471ed9cad1e399120add073 100644 (file)
@@ -36,7 +36,7 @@ class NodeReachableState extends BaseNodeState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index b4b1794925e7e4463204f25c0e3dbd9f52271d1a..507b30b5ee924b9b2613c4070efaf5b736c4f850 100644 (file)
@@ -36,7 +36,7 @@ class NodeVirginState extends BaseNodeState implements Stateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 4e5a755e15c7d196d814139477c1673e04ab6cd4..03dbd2123dcfa216c697102777d9ab01eef79073 100644 (file)
@@ -37,7 +37,7 @@ class ???PeerState extends BasePeerState implements PeerStateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
@@ -57,7 +57,5 @@ class ???PeerState extends BasePeerState implements PeerStateable {
                // Return the prepared instance
                return $stateInstance;
        }
-}
 
-// [EOF]
-?>
+}
index b6715da2a0fb42c5b78abaddc8829b3195e13772..65c7e904dadcaaf0996b1bca4c8f205cd23ec495 100644 (file)
@@ -37,7 +37,7 @@ class ConnectedPeerState extends BasePeerState implements PeerStateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 0c241afea3f4cdb80f306f97496cfa02fff6abce..560e973304a1b0cee35b8e3b98f276391da6957d 100644 (file)
@@ -37,7 +37,7 @@ class ConnectionRefusedPeerState extends BasePeerState implements PeerStateable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 457d1d285232c3b54c846393e038123cc9ece88e..a77f1407281c439f2b4182c7e92d0084293c5af7 100644 (file)
@@ -37,7 +37,7 @@ class ConnectionTimedOutPeerState extends BasePeerState implements PeerStateable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index c9aa8dfebf22508b7102ffe15f0deaca035a5baf..88f4529d508007fb8d2e7bbca91c1817db765cc1 100644 (file)
@@ -37,7 +37,7 @@ class NoRouteToHostPeerState extends BasePeerState implements PeerStateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index dd0fecd8cc6456603821d88b14645e7d454d7c64..9568f336b2140cc791cea2462edca72dca47fea1 100644 (file)
@@ -37,7 +37,7 @@ class OperationAlreadyProgressPeerState extends BasePeerState implements PeerSta
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index ecc4cfeb58bec7774843daa369e5a9857de7fe21..c14d1a9b103664b13ae556b7eef28f001fbc20c4 100644 (file)
@@ -37,7 +37,7 @@ class ProblemPeerState extends BasePeerState implements PeerStateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 3b228b3579768a65605f784dcdd9c5e12aa903ea..e10356cd2f167d9ba1cbe003eb5c5fe61dc605a9 100644 (file)
@@ -37,7 +37,7 @@ class TransportEndpointGonePeerState extends BasePeerState implements PeerStatea
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index fd2b681b990ef908d940d4212720ce4281eeb384..01da2d8a9fc1d78ff52306e9ed5e82622842ce4e 100644 (file)
@@ -33,7 +33,7 @@ class InitPeerState extends BasePeerState implements PeerStateable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 49caca112ce72d8411259a90482649ee73292fcd..dda8d9ee315ee5c0175337041e4e5463b411fe2d 100644 (file)
@@ -57,7 +57,7 @@ class ConnectionStatisticsHelper extends BaseHubSystem {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                parent::__construct(__CLASS__);
        }
 
index c15bd1174d1b708dc35a6db01238dd7f80feaacc..7fc371633e9a6abe3fe744e51a6ad5f1be6d8182 100644 (file)
@@ -46,7 +46,7 @@ class RawDataInputStream extends BaseStream implements InputStream {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 91870c868665353a1d4cb768ddb9c1c0cb77e635..fbc3e820c789b4550eeb1cad28305878463350dd 100644 (file)
@@ -40,7 +40,7 @@ class RawDataOutputStream extends BaseStream implements OutputStream {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index fcb79e9da4aa7b575a527ace6175fbfabc8b5cbf..676c77b7426c4582450ad9061560e444ec33595a 100644 (file)
@@ -34,7 +34,7 @@ class ???Tags extends BaseTag implements Tagable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 59b35a860ec138cb4af6bfecea7160895ca9e8c6..2f55045ddd3dd13b46a2b779122fb23107cc0861 100644 (file)
@@ -60,7 +60,7 @@ class PackageTags extends BaseTag implements Tagable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index afa39d8821a2567890fad1e3e7fb2d398fe7b47b..cc1687c7700d1be201c4472b61e0e3e56186dd09 100644 (file)
@@ -36,7 +36,7 @@ class AptProxy???Task extends BaseTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 1d56ae35c9b2ef42a36f1121e48f6f3b102f2009..30566a06b3c9ec079f1700feaa22225f3600e783 100644 (file)
@@ -39,7 +39,7 @@ class AptProxyListenerTask extends BaseHubTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 46b29c326539c8122bfc0958d04cd55ccda4f531..6622c701eff30d63056af97214ce05c544fc805e 100644 (file)
@@ -36,7 +36,7 @@ class Chat???Task extends BaseTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 544fac4b62616a7f9171e13460957a69b19480c9..039244077d5e93f4c47e84e6bf1f1d1d3aee7163 100644 (file)
@@ -39,7 +39,7 @@ class ChatTelnetListenerTask extends BaseHubTask implements Taskable, Visitable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 3d26541856f12a903aae5f6129e366cc77469159..044f998dcf3226bb6fbc6a14a309b97833ce347b 100644 (file)
@@ -36,7 +36,7 @@ class Crawler???Task extends BaseTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index c1c1840ceb0ea15b0e3c410482629da19aab9a27..2b0c2da9d95160eb5d55f62e29a50413c01d2669 100644 (file)
@@ -41,7 +41,7 @@ class CrawlerNodeCommunicatorTask extends BaseHubTask implements Taskable, Visit
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index b70540114553da8198733bf295d75e61a6a97fdc..c3a2fec7e209a95b484cafab005e679119edcb0e 100644 (file)
@@ -39,7 +39,7 @@ class CrawlerDocumentParserTask extends BaseHubTask implements Taskable, Visitab
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index d2006fd9f0ae380a3337f6cf9fafe32ebca6daf1..2bd933ca87d5a135ac3825a115ed9bad29408892 100644 (file)
@@ -39,7 +39,7 @@ class CrawlerMimeSnifferTask extends BaseHubTask implements Taskable, Visitable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 90da4a91c85f204c664518ab5888fd3590735e2f..70dc0a108c2ce3019251d316b35ff5e701a8fd04 100644 (file)
@@ -39,7 +39,7 @@ class CrawlerPingTask extends BaseHubTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 14272b5eca282db01cdc4427bf7b746be45bff94..99aad555bcfa5ffd044300ecb3061add80dded8a 100644 (file)
@@ -39,7 +39,7 @@ class CrawlerRemoteJobPublisherTask extends BaseHubTask implements Taskable, Vis
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index be151d2d6f0f3f0380aa4b5afe4fab09f8eb86c0..4bdc019dbe363946393ea257f1442df3478b59ae 100644 (file)
@@ -39,7 +39,7 @@ class CrawlerSnippetExtractorTask extends BaseHubTask implements Taskable, Visit
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 7176f36242043b3e7a2911d2c7b1eb057dfe2b68..6ef5b9c85c7b0042a0d263e42aa090824b614602 100644 (file)
@@ -39,7 +39,7 @@ class CrawlerStructureAnalyzerTask extends BaseHubTask implements Taskable, Visi
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index ae86e500bdec5e7abd92392d27a48e648262a5be..5b3c1991b6d6cb29f472af07579c7f2571e58bd6 100644 (file)
@@ -39,7 +39,7 @@ class CrawlerLocalUrlCrawlerTask extends BaseHubTask implements Taskable, Visita
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index f5e3c08294404233a9180193752dca6004a672e6..f14df81c8cc4515f0fbc03adc66b038766c7b678 100644 (file)
@@ -39,7 +39,7 @@ class CrawlerRemoteUrlCrawlerTask extends BaseHubTask implements Taskable, Visit
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 42eb40f7424a057e0145b96f663590ad9b7253ee..752e07658cbe9c73e66ef71b9ac4c766eefcae27 100644 (file)
@@ -35,7 +35,7 @@ class CrawlerUrlSource???Task extends BaseUrlSourceTask implements Taskable, Vis
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 62b09a59427e1c92967196f88ae51e42327db132..6fef4e95649b8341d0b0e3eaa995a76ef7b6b5f5 100644 (file)
@@ -38,7 +38,7 @@ class CrawlerUrlSourceFoundRssTask extends BaseUrlSourceTask implements Taskable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index eb06d1a71818647f3901bc9c4ba5d8adfefb0a96..927a21f2c2fbd813e020c30eb2ca5e3feb9fdbbb 100644 (file)
@@ -38,7 +38,7 @@ class CrawlerUrlSourceLocalStartTask extends BaseUrlSourceTask implements Taskab
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 6476817d967b180b9f8a30d6cc9be245a7c5e306..715de87721a57933b9f09e285c27014a5715d9f7 100644 (file)
@@ -38,7 +38,7 @@ class CrawlerUrlSourceRssStartTask extends BaseUrlSourceTask implements Taskable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index c7b48773d64697a35c42ae6d7db036165af1bd67..a02436e741b1e759e6601e6205972c1aaf7ea890 100644 (file)
@@ -38,7 +38,7 @@ class CrawlerUrlSourceUploadedListTask extends BaseUrlSourceTask implements Task
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index cf0277b047ff06d441f7c42d0f961807ebaba555..80cce98883d6110cab428e4693c19ce981e11ddf 100644 (file)
@@ -36,7 +36,7 @@ class Cruncher???Task extends BaseTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 7d05c9d9bdde53883f929e48fc628abea1056316..9512050d8673fc9a6bb65a9ce945ca430b0e8aa1 100644 (file)
@@ -41,7 +41,7 @@ class CruncherKeyProducerTask extends BaseHubTask implements Taskable, Visitable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 1db54be77690795d1702bf242174e8baea828b51..42221e29c0750f9dce5ad3c14a65f12c22af2eaf 100644 (file)
@@ -41,7 +41,7 @@ class CruncherTestUnitProducerTask extends BaseHubTask implements Taskable, Visi
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 819f7ab427b15d34ff7a058eef03a4af3467acf9..41e272f00be221be10735c68d6ab0cd28156f31e 100644 (file)
@@ -41,7 +41,7 @@ class CruncherWorkUnitFetcherTask extends BaseHubTask implements Taskable, Visit
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index a3d7c197149dc77d49cfb4b762fef7f2ffde0185..986d4b782e1031b5b6e23dab4563bab0b6674a00 100644 (file)
@@ -41,7 +41,7 @@ class MinerBlockFetcherTask extends BaseHubTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 09eb9b26e9b39d097109bbc074e82c158f91ee15..2f69670712c4ce41a7f14e302f86758ae9156b52 100644 (file)
@@ -41,7 +41,7 @@ class MinerRealGenesisBlockProducerTask extends BaseHubTask implements Taskable,
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index d13789bf0a07550fb921b458b97947c8e2162e7f..46bc62816f957f6189882828ee831dfd71f4c777 100644 (file)
@@ -41,7 +41,7 @@ class MinerTestGenesisBlockProducerTask extends BaseHubTask implements Taskable,
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 3fb1a4952467ff495d34bfdb7e7cb5de75d9925e..8f54fc36967b2b285f0535542332e13cabd60238 100644 (file)
@@ -36,7 +36,7 @@ class Miner???Task extends BaseTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 556bc94198c3c7118c356a0c4c914d603da4ff9c..01e9e41f71245cc2c967327d303453e652a07cf5 100644 (file)
@@ -40,7 +40,7 @@ class MinerNodeCommunicatorTask extends BaseHubTask implements Taskable, Visitab
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 4dee7eeb1b2539d0846486567a75135bcd052bc3..8224d1996375e6c558bdf91479f80d50d0dcb4de 100644 (file)
@@ -36,7 +36,7 @@ class NetworkPackage???Task extends BaseTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 0908f477acc1f35c2dd1efa043e250d8f751de78..3f3d367af6ddef004de4119d9134dc6412942812 100644 (file)
@@ -41,7 +41,7 @@ class NetworkPackageReaderTask extends BaseHubTask implements Taskable, Visitabl
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index c31e66ddca3b56b3460e8720c12e4c7f8ed4c09d..cd5adb76ceb9a874e2ab531d5873f96bc02c2d67 100644 (file)
@@ -41,7 +41,7 @@ class NetworkPackageWriterTask extends BaseHubTask implements Taskable, Visitabl
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 3efd4b30af74c131c6bf11f4cd999481f8e7b4ae..455504fc8ef6e521c34d89db79f5c38dd29b5820 100644 (file)
@@ -40,7 +40,7 @@ class NodeAnnouncementTask extends BaseHubTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 5f3013cf280bc237fb783b4d474d7d14647b0367..ea4ddd4caa37112f155cfc0a413b0c7b394ad2ba 100644 (file)
@@ -45,7 +45,7 @@ class NodeChunkAssemblerTask extends BaseHubTask implements Taskable, Visitable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 7a16e682171cd0afbcca8f4ed88d962a54203d27..41d2f29fb807a78a7072c352e337d3c1804cd108 100644 (file)
@@ -36,7 +36,7 @@ class Node???Task extends BaseTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 59f336ce30db2ab451eadf1e237b78f4d24f0369..0bad796dc1d3bd39bb59b0d0344cdbe55684ff5f 100644 (file)
@@ -40,7 +40,7 @@ class NodePackageDecoderTask extends BaseHubTask implements Taskable, Visitable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 3d2144434ba04a9ef27b1401762d1963010cdde2..089c1e4634bbea0700cb6dfcd309d85d3b7868c1 100644 (file)
@@ -36,7 +36,7 @@ class NodeDht???Task extends BaseTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 21892790d91837c3e22825e607925b4fb2d50f3b..8702d63bd78d23fd0acb1e2e88a8c0a86258f2b6 100644 (file)
@@ -40,7 +40,7 @@ class NodeDhtBootstrapTask extends BaseHubTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 67b099c7bd97f5174a7ddba1ca62553b83354d80..380c8322da5f7f86fbc1a129df2b33e0d0572358 100644 (file)
@@ -40,7 +40,7 @@ class NodeDhtInitializationTask extends BaseHubTask implements Taskable, Visitab
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 4a240e339945fc751a3fc9401f2aea3947d6e6fb..f2a81ed0288792ad6ddb8de1d179a51395381f75 100644 (file)
@@ -40,7 +40,7 @@ class NodeDhtLateBootstrapTask extends BaseHubTask implements Taskable, Visitabl
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 4734c2d7c4d0196509f43d62c86f44f250e022b1..92b90a0bf33af24520d03f33f5c6ca0d24a0a06c 100644 (file)
@@ -40,7 +40,7 @@ class NodeDhtPublicationCheckTask extends BaseHubTask implements Taskable, Visit
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index c3728d41ade1986e7a74c6c0efedf518ca26133a..b87832ea578d0d438ffdf1b5282f55ca87254630 100644 (file)
@@ -40,7 +40,7 @@ class NodeDhtPublicationTask extends BaseHubTask implements Taskable, Visitable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 3c1ee9c1f0d8fcbadf5d1d1537e78906ad29044e..11fd298080de91a9ce793d8b1a2c2f26e97729f7 100644 (file)
@@ -40,7 +40,7 @@ class NodeDhtQueryTask extends BaseHubTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 2b726ac02ad9f39d1365ae27168efffa18fb7a6a..edbe07e8381fc1d08649f860c8bbe1b2adba0cc0 100644 (file)
@@ -40,7 +40,7 @@ class NodeSocketListenerTask extends BaseHubTask implements Taskable, Visitable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 4ce4f80984be5604cc2eb4af13f0295881241b0d..5e3857ab81271f9e1e40f1aa71be4133052570ee 100644 (file)
@@ -44,7 +44,7 @@ class NodePingTask extends BaseHubTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index caa53bb4772374bb96d8914d178e2e709fb34a94..8a371884afb529867aef9779ea002bf1efc721c4 100644 (file)
@@ -40,7 +40,7 @@ class NodeSelfConnectTask extends BaseHubTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 79cc9303874e0cd5fa10a5574e66866baa53aefc..b3324db0daf8cc22ac99bec540e8ca30f0be4b8b 100644 (file)
@@ -40,7 +40,7 @@ class NodePackageTagsInitTask extends BaseHubTask implements Taskable, Visitable
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 308292e1febe5feda2d9854d2289263e82d40d7b..ec06643250d6476fa349c406e67ee45e5ffdf958 100644 (file)
@@ -39,7 +39,7 @@ class NodeUpdateCheckTask extends BaseHubTask implements Taskable, Visitable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index d8125d1f03727b50cced529526c77eeda5c2f14b..869f37f38c9c39eba6b1476e6189b3857a1fc621 100644 (file)
@@ -49,7 +49,7 @@ class XmlAnnouncementTemplateEngine extends BaseXmlTemplateEngine implements Com
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 615ad8bb0ccb5f16b68500fec803259508537deb..fb687da9f72973f904ba6567db3b2fb4799a0edc 100644 (file)
@@ -48,7 +48,7 @@ class XmlAnnouncementAnswerTemplateEngine extends BaseXmlAnswerTemplateEngine im
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 2fe72d592a4ddb323c089392b4d9c4b585317b8b..a9a4492f64d89801a9356ca8ac162ced9209c292 100644 (file)
@@ -38,7 +38,7 @@ class Xml???AnswerTemplateEngine extends BaseXmlAnswerTemplateEngine implements
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 9ad985573c7c2c2e276bcc5a1622204c7acfb653..38d974f5e1fd6530660eaf9e7dc0626851da1fc0 100644 (file)
@@ -49,7 +49,7 @@ class XmlDhtBootstrapAnswerTemplateEngine extends BaseXmlAnswerTemplateEngine im
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 9fc9c8a8aeb7cc7a582386200b4af0a270fc72d4..250b0527d246a9488f3294940151751cbcbb606d 100644 (file)
@@ -47,7 +47,7 @@ class XmlRequestNodeListAnswerTemplateEngine extends BaseXmlAnswerTemplateEngine
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index da3a1a07bb65f1f853a497992ee7f4d0133c8de4..23bdc583cca29d1d35003453ebdb1a1d781c00f8 100644 (file)
@@ -38,7 +38,7 @@ class Xml???TemplateEngine extends BaseXmlTemplateEngine implements CompileableX
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index e7320d91b82c6d29c165ac0881e4384462272d72..327fceed1d3e623e935fd1a8bf7cb5cbc917ef8c 100644 (file)
@@ -45,7 +45,7 @@ class XmlSelfConnectTemplateEngine extends BaseXmlTemplateEngine implements Comp
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index be293eae2f9d9ba85be11554bb0c87be4083d8ed..90e300537006516ab0592324657374b6af23ed5e 100644 (file)
@@ -48,7 +48,7 @@ class XmlDhtBootstrapTemplateEngine extends BaseXmlTemplateEngine implements Com
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index c66c4064b1d42595afd0addf7ca22f57e65f762a..225f00952992a19b23ae954c760676bdd6dd2cda 100644 (file)
@@ -49,7 +49,7 @@ class XmlDhtPublishEntryTemplateEngine extends BaseXmlTemplateEngine implements
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index f84028a522f7c6c0c941e2768980f6efc3fc7e1d..a1e6c4ede246991edad82d0e96a214e1bee0aa7a 100644 (file)
@@ -38,7 +38,7 @@ class XmlRequestNodeListEntryTemplateEngine extends BaseXmlTemplateEngine implem
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 69d8453d86668574b2c68915bc049b375ae2e225..e771a81c55a94fe850a1c45114858a61dd07c908 100644 (file)
@@ -52,7 +52,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index f40bd541af6442b0acfaf4c087475ec33f297ebe..283a6b5270d5234bd96e463746445a677ac1038e 100644 (file)
@@ -38,7 +38,7 @@ class XmlCruncherTestUnitTemplateEngine extends BaseXmlTemplateEngine implements
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 972c3fa55b36302fa2d63f0964abfe32bb19f1bb..d776b91a250c2e03831c3285156446e9737b56a0 100644 (file)
@@ -43,7 +43,7 @@ class XmlRequestNodeListTemplateEngine extends BaseXmlTemplateEngine implements
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index a2fd37eb43946fe8b17b0d8e23e60159cf71740a..34f007976d1e0500d4d2ce07e9ab33c91bb6cef4 100644 (file)
@@ -65,7 +65,7 @@ class HubTools extends BaseHubSystem {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 567df65e36b98235d4ef72bb01bc3175a1bc022c..ad969f9511e1e97ee2b6a72e31b8e5a0c4a3ec45 100644 (file)
@@ -39,7 +39,7 @@ class NodeLocatorUtils extends BaseHubSystem {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
index 6c4b0d20710ecb45afd37c3d930acbb65e275a1d..24253810c92472701bb1e1d14831d0aed7fac665 100644 (file)
@@ -38,7 +38,7 @@ class ???Visitor extends BaseVisitor implements PoolVisitor {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 61de6e5a19e22f16ae63b0886c4a59c1f2da5a86..b4945850fa2d722a1d30875faefe0d931654dd12 100644 (file)
@@ -37,7 +37,7 @@ class Handler???Visitor extends BaseVisitor implements PoolVisitor {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 2646f1bcfb47f53ba1d9cc02c721086b6202e718..1f3b7726d9a4741af413cb00a458f8cd03bc26f2 100644 (file)
@@ -41,7 +41,7 @@ class RawDataPoolMonitorVisitor extends BaseVisitor implements PoolVisitor, List
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 332403ddfa674420340827e39e77cd4d6bbf04a0..79361f05f0af9de041ff5a01816196cc9428b208 100644 (file)
@@ -37,7 +37,7 @@ class Shutdown???Visitor extends BaseVisitor implements PoolVisitor {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 5027ee3baa33cdbece51d67d217f26a9d54e3659..feb354d7a0c295b4612bd07891be2f92dee19216 100644 (file)
@@ -38,7 +38,7 @@ class ShutdownListenerPoolVisitor extends BaseVisitor implements PoolVisitor {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index e59bfef788f9c13a2c7bb0acb09d6dfa12c6da08..8f097e61ffc4823597f9705081270d4e5a199ce6 100644 (file)
@@ -40,7 +40,7 @@ class HalfShutdownSocketVisitor extends BaseVisitor implements Visitor {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index d55021d1bd5527c726cc9fce817b9523140593f0..a508301a93d75963a731024bd5dd9730371036dc 100644 (file)
@@ -41,7 +41,7 @@ class ShutdownSocketVisitor extends BaseVisitor implements Visitor {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 7085be53f9530a9f05fdfe434f6005440d97a934..b6941ecbca4acfab37a7a69ae43e40e0c55ceb48 100644 (file)
@@ -43,7 +43,7 @@ class ActiveTaskVisitor extends BaseVisitor implements TaskVisitor, PoolVisitor,
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
index 410c5570794010f3124f030852f30e6c95d232bb..55ca6c5460b33b114a1c066ffc320368a6c848dd 100644 (file)
@@ -43,7 +43,7 @@ class ShutdownTaskVisitor extends BaseVisitor implements TaskVisitor, PoolVisito
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
diff --git a/application/hub/exceptions/lists/class_ListGroupAlreadyAddedException.php b/application/hub/exceptions/lists/class_ListGroupAlreadyAddedException.php
deleted file mode 100644 (file)
index d309a97..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-<?php
-/**
- * This exception is thrown when a list group is already added
- *
- * @author             Roland Haeder <webmaster@shipsimu.org>
- * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2020 Hub Developer Team
- * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.shipsimu.org
- * @todo               this is generic
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-class ListGroupAlreadyAddedException extends FrameworkException {
-       /**
-        * The super constructor for all exceptions
-        *
-        * @param       $messageArray   Error message array
-        * @param       $code                   Error code
-        * @return      void
-        */
-       public function __construct (array $messageArray, $code) {
-               // Construct the message
-               $message = sprintf('[%s:%d] List group %s has already been added.',
-                       $messageArray[0]->__toString(),
-                       $this->getLine(),
-                       $messageArray[1]
-               );
-
-               // Call parent exception constructor
-               parent::__construct($message, $code);
-       }
-
-}
diff --git a/application/hub/exceptions/lists/class_NoListGroupException.php b/application/hub/exceptions/lists/class_NoListGroupException.php
deleted file mode 100644 (file)
index b45243c..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-<?php
-/**
- * This exception is thrown when a list group is not found
- *
- * @author             Roland Haeder <webmaster@shipsimu.org>
- * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2020 Hub Developer Team
- * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.shipsimu.org
- * @todo               this is generic
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-class NoListGroupException extends FrameworkException {
-       /**
-        * The super constructor for all exceptions
-        *
-        * @param       $messageArray   Error message array
-        * @param       $code                   Error code
-        * @return      void
-        */
-       public function __construct (array $messageArray, $code) {
-               // Construct the message
-               $message = sprintf('[%s:%d] List group %s was not found.',
-                       $messageArray[0]->__toString(),
-                       $this->getLine(),
-                       $messageArray[1]
-               );
-
-               // Call parent exception constructor
-               parent::__construct($message, $code);
-       }
-
-}
diff --git a/core b/core
index 1147b488834a6714647dc795dfe9c24bc8405e99..93c10cd8bbd88a27bdcd0e65956298666218f150 160000 (submodule)
--- a/core
+++ b/core
@@ -1 +1 @@
-Subproject commit 1147b488834a6714647dc795dfe9c24bc8405e99
+Subproject commit 93c10cd8bbd88a27bdcd0e65956298666218f150