-
Notifications
You must be signed in to change notification settings - Fork 0
/
class_reference.yml
1945 lines (1945 loc) · 46.8 KB
/
class_reference.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-
name: logger
type: class
value: Monolog\Logger
file: vendor/monolog/monolog/src/Monolog/Logger.php
-
name: routes
type: class
value: Symfony\Component\Routing\RouteCollection
file: vendor/symfony/routing/RouteCollection.php
-
name: controllers
type: class
value: Bolt\Routing\RootControllerCollection
file: src/Routing/RootControllerCollection.php
-
name: controllers_factory
type: class
value: Bolt\Routing\ControllerCollection
file: src/Routing/ControllerCollection.php
-
name: route_class
type: string
value: Silex\Route
file: ''
-
name: route_factory
type: class
value: Silex\Route
file: vendor/silex/silex/src/Silex/Route.php
-
name: exception_handler
type: class
value: Silex\ExceptionHandler
file: vendor/silex/silex/src/Silex/ExceptionHandler.php
-
name: dispatcher_class
type: string
value: Symfony\Component\EventDispatcher\EventDispatcher
file: ''
-
name: dispatcher
type: class
value: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher
file: vendor/symfony/http-kernel/Debug/TraceableEventDispatcher.php
-
name: callback_resolver
type: class
value: Bolt\Routing\CallbackResolver
file: src/Routing/CallbackResolver.php
-
name: resolver
type: class
value: Silex\ServiceControllerResolver
file: vendor/silex/silex/src/Silex/ServiceControllerResolver.php
-
name: kernel
type: class
value: Symfony\Component\HttpKernel\HttpKernel
file: vendor/symfony/http-kernel/HttpKernel.php
-
name: request_stack
type: class
value: Symfony\Component\HttpFoundation\RequestStack
file: vendor/symfony/http-foundation/RequestStack.php
-
name: request_context
type: class
value: Symfony\Component\Routing\RequestContext
file: vendor/symfony/routing/RequestContext.php
-
name: url_matcher
type: class
value: Bolt\Routing\UrlMatcher
file: src/Routing/UrlMatcher.php
-
name: request_error
type: closure
value: ''
file: ''
-
name: request.http_port
type: int
value: 80
file: ''
-
name: request.https_port
type: int
value: 443
file: ''
-
name: debug
type: bool
value: true
file: ''
-
name: charset
type: string
value: UTF-8
file: ''
-
name: locale
type: string
value: en_GB
file: ''
-
name: resources
type: class
value: Bolt\Configuration\Standard
file: src/Configuration/Standard.php
-
name: bolt_version
type: string
value: 3.0.12
file: ''
-
name: bolt_name
type: 'null'
value: ''
file: ''
-
name: bolt_released
type: bool
value: true
file: ''
-
name: bolt_long_version
type: string
value: 3.0.12
file: ''
-
name: deprecated.php
type: bool
value: false
file: ''
-
name: pathmanager
type: class
value: Eloquent\Pathogen\FileSystem\Factory\PlatformFileSystemPathFactory
file: vendor/bolt/pathogen/src/FileSystem/Factory/PlatformFileSystemPathFactory.php
-
name: classloader
type: 'null'
value: ''
file: ''
-
name: schema
type: class
value: Bolt\Storage\Database\Schema\Manager
file: src/Storage/Database/Schema/Manager.php
-
name: schema.prefix
type: string
value: bolt_
file: ''
-
name: schema.tables_filter
type: string
value: /^bolt_.+/
file: ''
-
name: schema.charset
type: string
value: utf8
file: ''
-
name: schema.collate
type: string
value: utf8_unicode_ci
file: ''
-
name: integritychecker
type: class
value: Bolt\Storage\Database\Schema\Manager
file: src/Storage/Database/Schema/Manager.php
-
name: 'schema.base_tables -> authtoken'
type: class
value: Bolt\Storage\Database\Schema\Table\AuthToken
file: src/Storage/Database/Schema/Table/AuthToken.php
-
name: 'schema.base_tables -> cron'
type: class
value: Bolt\Storage\Database\Schema\Table\Cron
file: src/Storage/Database/Schema/Table/Cron.php
-
name: 'schema.base_tables -> field_value'
type: class
value: Bolt\Storage\Database\Schema\Table\FieldValue
file: src/Storage/Database/Schema/Table/FieldValue.php
-
name: 'schema.base_tables -> log_change'
type: class
value: Bolt\Storage\Database\Schema\Table\LogChange
file: src/Storage/Database/Schema/Table/LogChange.php
-
name: 'schema.base_tables -> log_system'
type: class
value: Bolt\Storage\Database\Schema\Table\LogSystem
file: src/Storage/Database/Schema/Table/LogSystem.php
-
name: 'schema.base_tables -> relations'
type: class
value: Bolt\Storage\Database\Schema\Table\Relations
file: src/Storage/Database/Schema/Table/Relations.php
-
name: 'schema.base_tables -> taxonomy'
type: class
value: Bolt\Storage\Database\Schema\Table\Taxonomy
file: src/Storage/Database/Schema/Table/Taxonomy.php
-
name: 'schema.base_tables -> users'
type: class
value: Bolt\Storage\Database\Schema\Table\Users
file: src/Storage/Database/Schema/Table/Users.php
-
name: schema.base_tables
type: container
value: '<em>(array, see children below)</em>'
file: ''
-
name: schema.content_tables
type: container
value: '<em>(array, see children below)</em>'
file: ''
-
name: schema.extension_tables
type: container
value: (array)
file: ''
-
name: 'schema.tables -> authtoken'
type: class
value: Bolt\Storage\Database\Schema\Table\AuthToken
file: src/Storage/Database/Schema/Table/AuthToken.php
-
name: 'schema.tables -> cron'
type: class
value: Bolt\Storage\Database\Schema\Table\Cron
file: src/Storage/Database/Schema/Table/Cron.php
-
name: 'schema.tables -> field_value'
type: class
value: Bolt\Storage\Database\Schema\Table\FieldValue
file: src/Storage/Database/Schema/Table/FieldValue.php
-
name: 'schema.tables -> log_change'
type: class
value: Bolt\Storage\Database\Schema\Table\LogChange
file: src/Storage/Database/Schema/Table/LogChange.php
-
name: 'schema.tables -> log_system'
type: class
value: Bolt\Storage\Database\Schema\Table\LogSystem
file: src/Storage/Database/Schema/Table/LogSystem.php
-
name: 'schema.tables -> relations'
type: class
value: Bolt\Storage\Database\Schema\Table\Relations
file: src/Storage/Database/Schema/Table/Relations.php
-
name: 'schema.tables -> taxonomy'
type: class
value: Bolt\Storage\Database\Schema\Table\Taxonomy
file: src/Storage/Database/Schema/Table/Taxonomy.php
-
name: 'schema.tables -> users'
type: class
value: Bolt\Storage\Database\Schema\Table\Users
file: src/Storage/Database/Schema/Table/Users.php
-
name: schema.tables
type: container
value: '<em>(array, see children below)</em>'
file: ''
-
name: 'schema.builder -> base'
type: class
value: Bolt\Storage\Database\Schema\Builder\BaseTables
file: src/Storage/Database/Schema/Builder/BaseTables.php
-
name: 'schema.builder -> content'
type: class
value: Bolt\Storage\Database\Schema\Builder\ContentTables
file: src/Storage/Database/Schema/Builder/ContentTables.php
-
name: 'schema.builder -> extensions'
type: class
value: Bolt\Storage\Database\Schema\Builder\ExtensionTables
file: src/Storage/Database/Schema/Builder/ExtensionTables.php
-
name: schema.builder
type: container
value: '<em>(array, see children below)</em>'
file: ''
-
name: schema.timer
type: class
value: Bolt\Storage\Database\Schema\Timer
file: src/Storage/Database/Schema/Timer.php
-
name: schema.comparator.factory
type: closure
value: ''
file: ''
-
name: schema.comparator
type: class
value: Bolt\Storage\Database\Schema\Comparison\MySql
file: src/Storage/Database/Schema/Comparison/MySql.php
-
name: config
type: class
value: Bolt\Config
file: src/Config.php
-
name: config.environment
type: class
value: Bolt\Configuration\Environment
file: src/Configuration/Environment.php
-
name: logger.system
type: class
value: Monolog\Logger
file: vendor/monolog/monolog/src/Monolog/Logger.php
-
name: logger.change
type: class
value: Monolog\Logger
file: vendor/monolog/monolog/src/Monolog/Logger.php
-
name: logger.firebug
type: class
value: Monolog\Logger
file: vendor/monolog/monolog/src/Monolog/Logger.php
-
name: logger.flash
type: class
value: Bolt\Logger\FlashLogger
file: src/Logger/FlashLogger.php
-
name: logger.manager
type: class
value: Bolt\Logger\Manager
file: src/Logger/Manager.php
-
name: monolog.logger.class
type: string
value: Monolog\Logger
file: ''
-
name: monolog
type: class
value: Monolog\Logger
file: vendor/monolog/monolog/src/Monolog/Logger.php
-
name: monolog.handler
type: class
value: Monolog\Handler\NullHandler
file: vendor/monolog/monolog/src/Monolog/Handler/NullHandler.php
-
name: monolog.level
type: int
value: 100
file: ''
-
name: monolog.listener
type: class
value: Silex\EventListener\LogListener
file: vendor/silex/silex/src/Silex/EventListener/LogListener.php
-
name: monolog.name
type: string
value: bolt
file: ''
-
name: monolog.bubble
type: bool
value: true
file: ''
-
name: monolog.permission
type: 'null'
value: ''
file: ''
-
name: monolog.logfile
type: string
value: /Users/bob/Sites/bolt-origin/app/cache/bolt-debug.log
file: ''
-
name: logger.debug
type: class
value: Monolog\Logger
file: vendor/monolog/monolog/src/Monolog/Logger.php
-
name: editlink
type: string
value: ''
file: ''
-
name: edittitle
type: string
value: ''
file: ''
-
name: jsdata
type: array
value: ''
file: ''
-
name: session
type: class
value: Symfony\Component\HttpFoundation\Session\Session
file: vendor/symfony/http-foundation/Session/Session.php
-
name: session.storage
type: class
value: Bolt\Session\SessionStorage
file: src/Session/SessionStorage.php
-
name: session.listener
type: class
value: Bolt\Session\SessionListener
file: src/Session/SessionListener.php
-
name: session.options
type: array
value: ''
file: ''
-
name: session.options.import_from_ini
type: bool
value: true
file: ''
-
name: session.options_bag
type: class
value: Bolt\Session\OptionsBag
file: src/Session/OptionsBag.php
-
name: session.handler_factory
type: closure
value: ''
file: ''
-
name: session.handler_factory.files
type: closure
value: ''
file: ''
-
name: session.handler_factory.filesystem
type: closure
value: ''
file: ''
-
name: session.handler_factory.backing_memcache
type: closure
value: ''
file: ''
-
name: session.handler_factory.backing_memcached
type: closure
value: ''
file: ''
-
name: session.handler_factory.memcache
type: closure
value: ''
file: ''
-
name: session.handler_factory.memcached
type: closure
value: ''
file: ''
-
name: session.handler_factory.backing_redis
type: closure
value: ''
file: ''
-
name: session.handler_factory.redis
type: closure
value: ''
file: ''
-
name: session.generator
type: class
value: Bolt\Session\Generator\RandomGenerator
file: src/Session/Generator/RandomGenerator.php
-
name: session.generator.bytes_length
type: int
value: 32
file: ''
-
name: session.serializer
type: class
value: Bolt\Session\Serializer\NativeSerializer
file: src/Session/Serializer/NativeSerializer.php
-
name: session.bag.attribute
type: class
value: Symfony\Component\HttpFoundation\Session\Attribute\AttributeBag
file: vendor/symfony/http-foundation/Session/Attribute/AttributeBag.php
-
name: session.bag.flash
type: class
value: Symfony\Component\HttpFoundation\Session\Flash\FlashBag
file: vendor/symfony/http-foundation/Session/Flash/FlashBag.php
-
name: session.bag.metadata
type: class
value: Symfony\Component\HttpFoundation\Session\Storage\MetadataBag
file: vendor/symfony/http-foundation/Session/Storage/MetadataBag.php
-
name: translator
type: class
value: Silex\Translator
file: vendor/silex/silex/src/Silex/Translator.php
-
name: translator.resources
type: array
value: ''
file: ''
-
name: translator.message_selector
type: class
value: Symfony\Component\Translation\MessageSelector
file: vendor/symfony/translation/MessageSelector.php
-
name: translator.domains
type: array
value: ''
file: ''
-
name: locale_fallbacks
type: array
value: ''
file: ''
-
name: translator.cache_dir
type: string
value: /Users/bob/Sites/bolt-origin/app/cache/trans
file: ''
-
name: translator.loaders
type: array
value: ''
file: ''
-
name: timezone_offset
type: string
value: '+01:00'
file: ''
-
name: twig.options
type: array
value: ''
file: ''
-
name: twig.form.templates
type: array
value: ''
file: ''
-
name: twig.path
type: array
value: ''
file: ''
-
name: twig.templates
type: array
value: ''
file: ''
-
name: twig
type: class
value: Twig_Environment
file: vendor/twig/twig/lib/Twig/Environment.php
-
name: twig.loader.filesystem
type: class
value: Twig_Loader_Filesystem
file: vendor/twig/twig/lib/Twig/Loader/Filesystem.php
-
name: twig.loader.array
type: class
value: Twig_Loader_Array
file: vendor/twig/twig/lib/Twig/Loader/Array.php
-
name: twig.loader
type: class
value: Twig_Loader_Chain
file: vendor/twig/twig/lib/Twig/Loader/Chain.php
-
name: twig.loader.bolt_filesystem
type: class
value: Bolt\Twig\FilesystemLoader
file: src/Twig/FilesystemLoader.php
-
name: 'twig.handlers -> admin'
type: class
value: Bolt\Twig\Handler\AdminHandler
file: src/Twig/Handler/AdminHandler.php
-
name: 'twig.handlers -> array'
type: class
value: Bolt\Twig\Handler\ArrayHandler
file: src/Twig/Handler/ArrayHandler.php
-
name: 'twig.handlers -> html'
type: class
value: Bolt\Twig\Handler\HtmlHandler
file: src/Twig/Handler/HtmlHandler.php
-
name: 'twig.handlers -> image'
type: class
value: Bolt\Twig\Handler\ImageHandler
file: src/Twig/Handler/ImageHandler.php
-
name: 'twig.handlers -> record'
type: class
value: Bolt\Twig\Handler\RecordHandler
file: src/Twig/Handler/RecordHandler.php
-
name: 'twig.handlers -> text'
type: class
value: Bolt\Twig\Handler\TextHandler
file: src/Twig/Handler/TextHandler.php
-
name: 'twig.handlers -> user'
type: class
value: Bolt\Twig\Handler\UserHandler
file: src/Twig/Handler/UserHandler.php
-
name: 'twig.handlers -> utils'
type: class
value: Bolt\Twig\Handler\UtilsHandler
file: src/Twig/Handler/UtilsHandler.php
-
name: 'twig.handlers -> widget'
type: class
value: Bolt\Twig\Handler\WidgetHandler
file: src/Twig/Handler/WidgetHandler.php
-
name: twig.handlers
type: container
value: '<em>(array, see children below)</em>'
file: ''
-
name: twig.extension.asset
type: class
value: Symfony\Bridge\Twig\Extension\AssetExtension
file: vendor/symfony/twig-bridge/Extension/AssetExtension.php
-
name: safe_twig.bolt_extension
type: class
value: Bolt\Twig\TwigExtension
file: src/Twig/TwigExtension.php
-
name: safe_twig
type: class
value: Twig_Environment
file: vendor/twig/twig/lib/Twig/Environment.php
-
name: render
type: class
value: Bolt\Render
file: src/Render.php
-
name: safe_render
type: class
value: Bolt\Render
file: src/Render.php
-
name: http_cache
type: class
value: Silex\HttpCache
file: vendor/silex/silex/src/Silex/HttpCache.php
-
name: http_cache.esi
type: class
value: Symfony\Component\HttpKernel\HttpCache\Esi
file: vendor/symfony/http-kernel/HttpCache/Esi.php
-
name: http_cache.store
type: class
value: Symfony\Component\HttpKernel\HttpCache\Store
file: vendor/symfony/http-kernel/HttpCache/Store.php
-
name: http_cache.esi_listener
type: class
value: Symfony\Component\HttpKernel\EventListener\SurrogateListener
file: vendor/symfony/http-kernel/EventListener/SurrogateListener.php
-
name: http_cache.options
type: array
value: ''
file: ''
-
name: http_cache.cache_dir
type: string
value: /Users/bob/Sites/bolt-origin/app/cache
file: ''
-
name: whoops
type: class
value: Whoops\Run
file: vendor/filp/whoops/src/Whoops/Run.php
-
name: whoops.handler
type: class
value: Whoops\Handler\PlainTextHandler
file: vendor/filp/whoops/src/Whoops/Handler/PlainTextHandler.php
-
name: whoops.handler.cli
type: class
value: Whoops\Handler\PlainTextHandler
file: vendor/filp/whoops/src/Whoops/Handler/PlainTextHandler.php
-
name: whoops.handler.page
type: class
value: Whoops\Handler\PrettyPageHandler
file: vendor/filp/whoops/src/Whoops/Handler/PrettyPageHandler.php
-
name: whoops.handler.page.app_info
type: closure
value: ''
file: ''
-
name: whoops.handler.page.request_info
type: closure
value: ''
file: ''
-
name: whoops.listener
type: class
value: Bolt\EventListener\WhoopsListener
file: src/EventListener/WhoopsListener.php
-
name: dump
type: closure
value: ''
file: ''
-
name: dumper
type: class
value: Symfony\Component\VarDumper\Dumper\CliDumper
file: vendor/symfony/var-dumper/Dumper/CliDumper.php
-
name: dumper.cli
type: class
value: Symfony\Component\VarDumper\Dumper\CliDumper
file: vendor/symfony/var-dumper/Dumper/CliDumper.php
-
name: dumper.html
type: class
value: Symfony\Component\VarDumper\Dumper\HtmlDumper
file: vendor/symfony/var-dumper/Dumper/HtmlDumper.php
-
name: dumper.cloner
type: class
value: Symfony\Component\VarDumper\Cloner\VarCloner
file: vendor/symfony/var-dumper/Cloner/VarCloner.php
-
name: profiler.mount_prefix
type: string
value: /_profiler
file: ''
-
name: data_collector.templates
type: array
value: ''
file: ''
-
name: data_collectors
type: array
value: ''
file: ''
-
name: twig.profiler.profile
type: class
value: Twig_Profiler_Profile
file: vendor/twig/twig/lib/Twig/Profiler/Profile.php
-
name: web_profiler.controller.profiler
type: class
value: Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController
file: vendor/symfony/web-profiler-bundle/Controller/ProfilerController.php
-
name: web_profiler.controller.router
type: class
value: Symfony\Bundle\WebProfilerBundle\Controller\RouterController
file: vendor/symfony/web-profiler-bundle/Controller/RouterController.php
-
name: web_profiler.controller.exception
type: class
value: Symfony\Bundle\WebProfilerBundle\Controller\ExceptionController
file: vendor/symfony/web-profiler-bundle/Controller/ExceptionController.php
-
name: web_profiler.toolbar.listener
type: class
value: Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener
file: vendor/symfony/web-profiler-bundle/EventListener/WebDebugToolbarListener.php
-
name: profiler
type: class
value: Symfony\Component\HttpKernel\Profiler\Profiler
file: vendor/symfony/http-kernel/Profiler/Profiler.php
-
name: profiler.storage
type: class
value: Symfony\Component\HttpKernel\Profiler\FileProfilerStorage
file: vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php
-
name: profiler.request_matcher
type: 'null'
value: ''
file: ''
-
name: profiler.only_exceptions
type: bool
value: false
file: ''
-
name: profiler.only_master_requests
type: bool
value: false
file: ''
-
name: web_profiler.debug_toolbar.enable
type: bool
value: false
file: ''
-
name: web_profiler.debug_toolbar.position
type: string
value: bottom
file: ''
-
name: web_profiler.debug_toolbar.intercept_redirects
type: bool
value: false
file: ''
-
name: profiler.listener
type: class
value: Symfony\Component\HttpKernel\EventListener\ProfilerListener
file: vendor/symfony/http-kernel/EventListener/ProfilerListener.php
-
name: stopwatch
type: class
value: Symfony\Component\Stopwatch\Stopwatch
file: vendor/symfony/stopwatch/Stopwatch.php
-
name: code.file_link_format
type: 'null'
value: ''
file: ''
-
name: profiler.templates_path
type: string
value: /Users/bob/Sites/bolt-origin/vendor/symfony/web-profiler-bundle/Resources/views
file: ''
-
name: profiler.cache_dir
type: string
value: /Users/bob/Sites/bolt-origin/app/cache/profiler
file: ''
-
name: db.logger
type: class
value: Doctrine\DBAL\Logging\DebugStack
file: vendor/doctrine/dbal/lib/Doctrine/DBAL/Logging/DebugStack.php
-
name: db.default_options
type: array
value: ''
file: ''
-
name: dbs.options.initializer
type: closure
value: ''
file: ''
-
name: 'dbs -> default'
type: class
value: Bolt\Storage\Database\Connection
file: src/Storage/Database/Connection.php
-
name: dbs
type: container
value: '<em>(array, see children below)</em>'
file: ''
-
name: 'dbs.config -> default'
type: class
value: Doctrine\DBAL\Configuration
file: vendor/doctrine/dbal/lib/Doctrine/DBAL/Configuration.php
-
name: dbs.config
type: container
value: '<em>(array, see children below)</em>'
file: ''
-
name: 'dbs.event_manager -> default'
type: class
value: Doctrine\Common\EventManager
file: vendor/doctrine/common/lib/Doctrine/Common/EventManager.php
-
name: dbs.event_manager
type: container
value: '<em>(array, see children below)</em>'
file: ''
-
name: db
type: class
value: Bolt\Storage\Database\Connection
file: src/Storage/Database/Connection.php
-
name: db.config
type: class
value: Doctrine\DBAL\Configuration
file: vendor/doctrine/dbal/lib/Doctrine/DBAL/Configuration.php
-
name: db.event_manager
type: class
value: Doctrine\Common\EventManager
file: vendor/doctrine/common/lib/Doctrine/Common/EventManager.php
-
name: db.options
type: array
value: ''
file: ''
-
name: db.doctrine_listener
type: class
value: Bolt\EventListener\DoctrineListener
file: src/EventListener/DoctrineListener.php
-
name: db.query_cache
type: class
value: Doctrine\Common\Cache\ArrayCache
file: vendor/doctrine/cache/lib/Doctrine/Common/Cache/ArrayCache.php
-
name: db.query_cache_profile
type: class
value: Doctrine\DBAL\Cache\QueryCacheProfile
file: vendor/doctrine/dbal/lib/Doctrine/DBAL/Cache/QueryCacheProfile.php
-
name: fragment.handler
type: class
value: Symfony\Component\HttpKernel\Fragment\FragmentHandler
file: vendor/symfony/http-kernel/Fragment/FragmentHandler.php
-
name: fragment.renderer.inline
type: class
value: Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer
file: vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php
-
name: fragment.renderer.hinclude
type: class
value: Symfony\Component\HttpKernel\Fragment\HIncludeFragmentRenderer
file: vendor/symfony/http-kernel/Fragment/HIncludeFragmentRenderer.php
-
name: fragment.renderer.esi
type: class
value: Symfony\Component\HttpKernel\Fragment\EsiFragmentRenderer
file: vendor/symfony/http-kernel/Fragment/EsiFragmentRenderer.php
-
name: fragment.listener
type: class
value: Symfony\Component\HttpKernel\EventListener\FragmentListener
file: vendor/symfony/http-kernel/EventListener/FragmentListener.php
-
name: uri_signer
type: class
value: Symfony\Component\HttpKernel\UriSigner
file: vendor/symfony/http-kernel/UriSigner.php
-
name: uri_signer.secret
type: string
value: dbf521ca491bea4c2fd8320ef6afc3ab
file: ''
-
name: fragment.path
type: string
value: /_fragment
file: ''
-
name: fragment.renderer.hinclude.global_template
type: 'null'
value: ''
file: ''
-
name: fragment.renderers
type: array
value: ''
file: ''